我没有打开这个特定的项目大约3个月但是当我尝试生成一个签名的.apk文件时,我只收到这个错误:
C:\app\src\main\res\layout\fragment_newanswers.xml:57: Error: The id "linearLayout2" is not defined anywhere. [UnknownId]
android:layout_alignTop="@+id/linearLayout2"
这是我在xml文件中的当前代码:
<TextView
android:text="OptionView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtOptionTitle"
android:textSize="24sp"
android:textAlignment="center" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/txtOptionTitle"
android:layout_alignParentStart="false"
android:layout_alignParentBottom="false">
<!--
<TextView
android:text="QuestionView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtQuestionTitle"
android:textAlignment="center"
android:textSize="18sp" />
-->
<com.rokonoid.widget.ExpandableTextView
android:id="@+id/txtQuestionTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18sp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.bozapro.circularsliderrange.CircularSliderRange
android:id="@+id/cirAns"
android:layout_width="wrap_content"
android:layout_height="343dp"
circular:start_angle="270"
circular:end_angle="300"
circular:start_thumb_size="0dp"
android:paddingLeft="75dp"
android:paddingRight="75dp" />
<TextView
android:text="5%"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/linearLayout2"
android:layout_centerHorizontal="true"
android:id="@+id/txtPercent"
android:textAlignment="center"
android:textSize="36sp"
android:layout_marginTop="150dp" />
</RelativeLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:text="Back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnQnsBack"
android:layout_weight="1" />
<Button
android:text="Next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btnQnsNext"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
有趣的是,它以前工作了很多次,我根本没有做任何改变。我也可以重建和清理构建它没有错误。奇怪的是,我的备份版本是相同的,在这里为我的6个不同的xml文件生成这个相同的错误:
Error:(5) Error: Suspicious namespace and prefix combination [NamespaceTypo]
它指向6个文件中的每一个中的这一行:
xmlns:app="http://schemas.android.com/tools"
我的猜测是我没有在MainActivity中调用某些内容(但这并不能解释为什么它一直有效 - 完全运行.apk)任何想法?
谢谢堆! 詹姆斯
答案 0 :(得分:0)
删除此行
android:layout_alignTop="@+id/linearLayout2"
来自
<TextView
android:text="5%"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/linearLayout2"
android:layout_centerHorizontal="true"
android:id="@+id/txtPercent"
android:textAlignment="center"
android:textSize="36sp"
android:layout_marginTop="150dp" />
因为我在上面的文件中看不到id为linearLayout2的布局。这种错误不会在调试版本中生成,而是在realease版本中生成。
答案 1 :(得分:0)
正如@Malik Ahhsan所说,只需删除android:layout_alignTop="@+id/linearLayout2"