在admob-testad中,在xmlns:ads设置中,我们使用哪个?
1)http://schemas.android.com/apk/lib/com.android.google.gms.ads
2)http://schemas.android.com/apk/lib/com.google.ads
3)http://schemas.android.com/apk/res-auto
在谷歌开发者网站上,没有3)被使用,但当我使用它时,根本没有广告出现。但当我选择1)或2)时,我得到了一个错误来代替广告。一个黑色背景和红色文本,上面写着"缺少必需的xml属性adsize"。。
您可以在xml文件中尝试这件事。
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adUnitId="YOUR_AD_UNIT_ID"
ads:adSize="BANNER"/>
或者在代码中针对admob
遵循本教程和本教程。