0

这是我的 xml 代码,我得到一个“根元素之后的标记文档必须格式正确”

<?xml version="1.0" encoding="utf-8"?>

<TextView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/title_paired_devices"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/title_paired_devices"
    android:visibility="gone"
    android:background="#666"
    android:textColor="#fff"
    android:paddingLeft="5dp"
/>
<ListView android:id="@+id/paired_devices"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:stackFromBottom="true"
    android:layout_weight="1"
/>
<TextView android:id="@+id/title_new_devices"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/title_other_devices"
    android:visibility="gone"
    android:background="#666"
    android:textColor="#fff"
    android:paddingLeft="5dp"
/>
<ListView android:id="@+id/new_devices"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:stackFromBottom="true"
    android:layout_weight="2"
/>
<Button android:id="@+id/button_scan"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/button_scan"
/>

</menu>

它最初是一个 LinearLayout 但在此问题的其他答案之后,这仍然给我一个错误

4

2 回答 2

1

您没有作为 root 的打开菜单标签。

于 2013-02-01T15:27:28.493 回答
1

有两个问题,你有一个没有打开的关闭菜单标签,并且没有布局可以进入。参考这个:http: //developer.android.com/guide/topics/ui/declaring-layout.html

于 2013-02-01T15:31:25.547 回答