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

ルートとしてメニューの開始タグがありません。

于 2013-02-01T15:27:28.493 に答える
1

2 つの問題があります。開始タグのない終了メニュー タグがあり、これを入れるためのレイアウトがありません。これを参照してください:http://developer.android.com/guide/topics/ui/declaring-layout.html

于 2013-02-01T15:31:25.547 に答える