0
我知道這個問題以前可能已被問過,但我無法使用這些答案解決我的問題。缺少XML屬性的Android廣告
我的問題是當我使用eclipse將我的AdView添加到我的佈局時,我收到消息:缺少所需的XML屬性「adSize」。
這是我目前活動XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content"
xmlns:ads= "http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0.9"
android:background="@drawable/background">
</android.support.v4.view.ViewPager>
<com.google.android.gms.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_weight="0.1"
ads:adSize="BANNER"
ads:adUnitId="mycodehidden">
</com.google.android.gms.ads.AdView>
還沒有當我運行此顯示廣告。