首先,我把它放入我的清单
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
然后,在我希望广告出现的每个布局中,我已将其放入.xml
向上
xmlns:ads="http://schemas.android.com/apk/res-auto"
而这个下来
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="ca-abb-psb-4557896546544844/5789887777"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"
android:layout_gravity="center"
android:layout_margin="10dp">
</com.google.android.gms.ads.AdView>
最后,我导入了库google-play-services_libs
现在问题是我从xml中的error: No resource identifier found for attribute 'loadAdOnCreate' in package 'aaa.bbb.ccc'
获得<com.google.android.gms.ads.AdView .... >
。
我在所有应用类中都获得了R cannot be resolved to a variable
。
答案 0 :(得分:9)
查看https://developers.google.com/android/reference/com/google/android/gms/ads/AdView#xml-attributes
LoadOnCreate
不能再用作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="MY_AD_UNIT_ID"
ads:adSize="BANNER"/>
// Java code required.
// testDevices and loadAdOnCreate attributes are
// no longer available.
AdView adView = (AdView)this.findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
.addTestDevice("TEST_DEVICE_ID")
.build();
adView.loadAd(adRequest);