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とGoogleで解決策を検索しましたが、彼らはいつも私に置くように言いました

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

しかし、私はすでにそれを持っているので、なぜこのエラーが発生するのかわかりません

4

1 に答える 1

0

これが、アドビューの使用方法です。

<?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 に答える