gpt4 book ai didi

Android XML 错误解析 XML : junk after document element

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:53:13 25 4
gpt4 key购买 nike

我收到这个错误:

在此行发现多个注释: - 文档中跟在根元素之后的标记必须很好- 形成。 - 错误:解析 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 属性。

关于Android XML 错误解析 XML : junk after document element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7800682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com