在我的活动中,我使用了这个
public class MainActivity extends Activity {
AdView adView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
adView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().addTestDevice(
"BD9386F17F7DE795B86B5BBBEDDF1095").build();
adView.loadAd(adRequest);
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
adView.pause();
}
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
adView.resume();
}
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
adView.destroy();
}
}
在我的xml中使用了这个
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-5000769796423780/7961881354" />
并在我的清单中
我已使用此权限
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
此元数据
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
我一直使用这段代码,但这次它不起作用。 即使Logcat没有错误。最近我使用了api-21。
答案 0 :(得分:0)
您是否已将AdActivity添加到manifest?
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />