error error parsing xml unbound prefix

来源:互联网 发布:电吉他软件效果器 编辑:程序博客网 时间:2024/06/04 18:59

多加了一个app:属性,报错:error error parsing xml unbound prefix。

这种情况往往是没有指明命名空间,需添加一条


xmlns:app="http://schemas.android.com/apk/res-auto"

<LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:background="@drawable/bg">     <com.viewpagerindicator.TitlePageIndicator        android:id="@+id/indicator"        android:layout_height="wrap_content"        android:layout_width="fill_parent"        android:background="#26000000"        app:footerColor="#FFAA2222"        app:footerLineHeight="1dp"        app:footerIndicatorHeight="3dp"        app:footerIndicatorStyle="underline"        app:selectedColor="#FF000000"        app:selectedBold="true" />    <org.gaoqi.lyricbook.CustomViewPager        android:id="@+id/pager"        android:layout_width="fill_parent"        android:layout_height="0dp"        android:layout_weight="1"        /></LinearLayout>





0 0
原创粉丝点击