解析XML XML错误解析XML文档元素后的垃圾

前端之家收集整理的这篇文章主要介绍了解析XML XML错误解析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>

任何有关我所犯错误的想法?
所有的帮助是赞赏.

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属性.

猜你在找的XML相关文章