"解析XML时出错:未绑定的前缀"使用AdView时

时间:2014-12-15 08:16:54

标签: android xml

我正在尝试在Android应用程序中使用Adview。但现在我遇到了问题。 这是来自xml文件的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/category_page"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="#A0C3FF"
        android:dividerHeight="2dp"
        android:layout_marginBottom="30dp" />

    <com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_gravity="bottom"
        ads:adSize="BANNER"
        ads:adUnitId="@string/banner_ad_unit_id" >
    </com.google.android.gms.ads.AdView>
</FrameLayout>

</LinearLayout>

相同类型的代码在下一个xml文件中运行良好。 但不是在这里。 如果我在任何地方做错了,请你告诉我,因为我自己找不到它。

1 个答案:

答案 0 :(得分:1)

对不起,但我得到了解决方案。 我错过了包括

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

现在代码看起来像这样

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:ads="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

干杯..