我有一个Android应用,我正在尝试添加AdMob插页式广告。我这样创造它们
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(getResources().getString(R.string.ad));
interstitial.loadAd(AdUtils.createRequest());
当适当的时刻,我会这样展示:
if(interstitial.isLoaded()) {
interstitial.show();
}
当我在模拟器上测试这段代码时,一切都很好。但是当我在真实设备上运行时,它经常(大约一半的所有节目)只显示带有关闭按钮的黑屏,而根本没有广告图像。这个问题有什么解决方案吗?
答案 0 :(得分:0)
您可以尝试以下方式。
将此声明为变量。
private InterstitialAd interstitial;
然后在onCreate
方法
interstitial = new InterstitialAd(this, "your id");
// Create ad request
AdRequest adRequest = new AdRequest();
// Begin loading your interstitial
interstitial.loadAd(adRequest);
// Set Ad Listener to use the callbacks below
interstitial.setAdListener(this);
并最后将此设置在您的onCreate
方法之外,因此基本上设置在您的活动中的代码下面。
@Override
public void onReceiveAd(Ad ad) {
// TODO Auto-generated method stub
if (ad == interstitial) {
interstitial.show();
}
}
希望这会对你有所帮助。