3

私はError parsing XML: unbound prefixこのxmlファイルにを持っています:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/sipLabel"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"/>
    <ImageView android:src="@drawable/connected" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_weight="0.35" android:gravity="center"/>
</LinearLayout>

エラーはにあり<ImageView>ます。何が問題なのですか?

どうもありがとうございます。

4

2 に答える 2

5

xmlns:android="http://schemas.android.com/apk/res/android"レイアウトxmlのルート要素に名前空間宣言を配置する必要があります。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" [...]
于 2011-04-30T14:04:22.733 に答える
2

最上位の要素(この場合はLinearLayoutタグ)でxmlns属性を定義する必要があります。

于 2011-04-30T14:07:26.943 に答える