我在 android 视图中经常遇到问题,Error parsing XML: unbound prefix on Line 2.
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
xmlns:android
2)第一个节点需要包含: xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"
3) 如果您正在集成 AdMob,请检查自定义参数,例如ads:adSize,您需要
ads:adSize
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
4)如果您正在使用LinearLayout,您可能必须定义工具:
LinearLayout
xmlns:tools="http://schemas.android.com/tools"