2

次のような作業レイアウトがあります。

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <com.google.ads.AdView android:id="@+id/adView"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         ads:adUnitId="ca-app-pub-xxx/xxx"
                         ads:adSize="BANNER"
                         ads:testDevices="TEST_EMULATOR, xxx"
                         ads:loadAdOnCreate="true"/>

</LinearLayout>

今、私は LinearLayout を削除したい:

<?xml version="1.0" encoding="utf-8"?>
<com.google.ads.AdView android:id="@+id/adView"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         ads:adUnitId="ca-app-pub-9000079580883391/8483250253"
                         ads:adSize="BANNER"
                         ads:testDevices="TEST_EMULATOR, 4FBD7E211FFFF7D7"
                         ads:loadAdOnCreate="true"/>

それから私はエラーに直面しています。を追加する必要があることはわかっていますが、どこにあるのxmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"かわかりません

4

2 に答える 2

19

xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"これらの両方を Adview に追加します

于 2013-10-29T10:56:45.423 に答える