我开始从一本名为Android Programming The Big Nerd Ranch Guide的书中学习Android编程,这些都是其中一个例子。但是,我收到了错误。
错误是:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".QuizActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
</RelativeLayout>
<!-- Error 1 and 2 -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"
android:text="@string/question_text" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<!-- Error 3 -->
android:text="@string/true_button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/false_button" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
- 解析XML时出错:文档元素之后的垃圾。
- 根元素后面的文档中的标记必须格式正确。
醇>
那是因为你只能在XML Layout文件中有一个根元素。所以从那里删除第二个根元素。
你有
<RelativeLayout>
...
</RelativeLayout>
和
<LinearLayout >
...
</LinearLayout>
在您的根文件中。您只能在根目录中拥有一个布局。其余的应该嵌套在根布局元素下。
3.在布局文件中找到意外的文字:“”“
对于第三个错误,您可能需要查看答案Strange Lint Warning - Unexpected text found in layout file: ""。基本上,如果在删除错误后执行Build->Clean
,则应删除该错误。否则,白色空间中还有其他一些特征。您可能希望再次编写xml文件,而无需复制粘贴它。