1. ホーム
  2. xml

[解決済み] アンドロイドビューで頻繁に発生する問題、XMLのパースエラー:結合されていない接頭辞

2022-02-19 08:07:26

質問

アンドロイドビューで頻繁に問題が発生します。 Error parsing XML: unbound prefix on Line 2 .

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:id="@+id/myScrollLayout" 
android:layout_width="fill_parent"  android:layout_height="wrap_content">
    <TextView android:layout_height="wrap_content" android:layout_width="fill_parent" 
    android:text="Family" android:id="@+id/Family" 
    android:textSize="16px" android:padding="5px" 
    android:textStyle="bold" android:gravity="center_horizontal">
    </TextView>

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:orientation="vertical" android:scrollbars="vertical">
        <LinearLayout android:orientation="vertical" android:id="@+id/myMainLayout" 
        android:layout_width="fill_parent"  android:layout_height="wrap_content">
        </LinearLayout>
    </ScrollView>

</LinearLayout>

解決方法は?

このようなことが起こる理由はいくつかあります。

1) 名前空間が正しくないか、属性にタイプミスがあると、このエラーが表示されます。xmlns'が間違っているように、それは次のようになるはずです。 xmlns:android

2) 最初のノードが含まれている必要があります。 xmlns:android="http://schemas.android.com/apk/res/android"

3) AdMobを統合している場合、以下のようなカスタムパラメータを確認します。 ads:adSize が必要です。

xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

4)もし、あなたが LinearLayout は、ツールを定義する必要があるかもしれません。

xmlns:tools="http://schemas.android.com/tools"