0

所以我正在尝试将广告添加到我的程序中,如您所见,这是 xml

<com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/adView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView1"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="27dp"
    ads:loadAdOnCreate="true"
    ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
    app:adSize="BANNER" >
</com.google.ads.AdView>

我得到错误

Error parsing XML: unbound prefix

我在 stackoverflow 和谷歌上搜索了一个解决方案,他们总是告诉我把

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

但是我已经有了它,所以我不确定为什么会收到此错误

4

1 回答 1

0

这就是您必须使用 adview 的方式。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
  <com.google.ads.AdView android:id="@+id/adView"
                         android:layout_width="wrap_content"
                         android:layout_height="wrap_content"
                         ads:adUnitId="MY_AD_UNIT_ID"
                         ads:adSize="BANNER"
                         ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
                         ads:loadAdOnCreate="true"/>
</LinearLayout>

您可以在此处浏览官方的 adview 教程。

于 2013-05-19T05:33:55.520 回答