我正在使用admob来显示
Android广告.测试广告正常工作,但不会显示真实的广告.此外,对于真正的插页式广告,我们没有任何问题.只有真正的横幅广告没有显示.我的java代码是
private InterstitialAd interstitial; interstitial = new InterstitialAd(MainActivity.this); interstitial.setAdUnitId("ca-app-pub-********"); AdView adView = (AdView) this.findViewById(R.id.adView); AdRequest adRequest = new AdRequest.Builder() // Add a test device to show Test Ads .addTestDevice(AdRequest.DEVICE_ID_EMULATOR) .addTestDevice("4CCC00EF4EA205A6FE82E1AEB26B0839") .build(); // Load ads into Banner Ads adView.loadAd(adRequest); // Load ads into Interstitial Ads //interstitial.loadAd(adRequest);
布局文件是
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.com/apk/res-auto" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <com.google.android.gms.ads.AdView android:id="@+id/adView" android:layout_width="wrap_content" android:layout_height="wrap_content" ads:adSize="BANNER" ads:adUnitId="ca-app-pub-********" /> </LinearLayout>