1

多くの組み合わせを試しましたが、xmlファイルに次のエラーが表示されます

エラー:XMLの解析エラー:バインドされていないプレフィックス

並んで<com.google.ads.AdView、どうすればこれを解決できますか。

   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
         xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        >
        <RelativeLayout
         android:layout_width="wrap_content"         
         android:layout_height="wrap_content"         
         android:layout_alignParentBottom="true" > 
    <com.google.ads.AdView
            android:id="@+id/ad"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            myapp:adUnitId="000000000000000"
            myapp:adSize="BANNER"
            myapp:refreshInterval="30"
         />
        </RelativeLayout>
       <ListView
            android:id="@+id/list_of_wishes"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:dividerHeight="2dip"

            android:clickable="true" >
               </ListView>


    </LinearLayout>
4

1 に答える 1

13

ads:の代わりに使うべきだと思いたいのですがmyapp:、間違っているかもしれません。これがうまくいかない場合はお知らせください。

<com.google.ads.AdView
        android:id="@+id/ad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        ads:adUnitId="000000000000000"
        ads:adSize="BANNER"
        ads:refreshInterval="30"
     />

これが役立つ可能性がある理由は、ads名前空間を設定したが、myapp(この行に示されているように)設定していないという事実です。

xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
于 2013-01-08T16:33:38.503 に答える