解析XML的Android XML Error:文档元素之后的垃圾

时间:2011-10-17 23:11:05

标签: android xml

我收到此错误:

此行找到多个注释:      - 根元素后面的文档中的标记必须是 -      形成。      - 错误:解析XML时出错:文档元素

之后的垃圾

这出现在此xml文件中的第二个TextView上。

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/text1" 
          android:textSize="16sp" 
          android:textStyle="bold" 
          android:textColor="#FFFF00" 
          android:layout_width="fill_parent" 
          android:layout_height="fill_parent"></TextView>

<TextView android:id="@+id/text2"
    android:textSize="12sp" 
    android:textStyle="bold" 
    android:layout_width="wrap_content" 
    android:layout_height="fill_parent"
    ></TextView>

<TextView android:id="@+id/text3" 
    android:typeface="sans"
    android:textSize="14sp"
    android:textStyle="italic"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"></TextView>

关于我犯的错误的任何想法? 感谢所有帮助。

2 个答案:

答案 0 :(得分:27)

XML文档只能有1个根元素。你有3个这样的元素。您应该将TextView元素包含在布局中,例如LinearLayout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <!-- TextView elements here -->

</LinearLayout>

删除第一个TextView元素上的xmlns属性。

答案 1 :(得分:1)

您应该将元素封装在布局中,例如LinearLayout。您可以查看现有的布局配置文件。