作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 admob 插页式广告,它通过 onCreate 加载
所以我可以使用它一次,但不能使用两次。我必须重新加载它然后使用它...
我想在显示后立即重新加载它,但似乎没有这样的回调监听器......
如何自动重新加载广告?
最佳答案
您可以在间隙对象上添加一个监听器并在您的事件中覆盖 onAdClosed 方法:
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(INTER_UNIT_ID);
AdRequest interstitialRequest = new AdRequest.Builder()
.addTestDevice(device_id)
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build();
interstitial.setAdListener(new AdListener()
{
@Override
public void onAdLoaded()
{
//log interstitial loaded
}
@Override
public void onAdFailedToLoad(int errorCode)
{
}
@Override
public void onAdClosed()
{
//reload interstitial
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(device_id)
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build();
interstitial.loadAd(adRequest);
}
});
interstitial.loadAd(interstitialRequest);
……
希望有用!
关于admob - 自动重新加载 admob 插页式广告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27921059/
我是一名优秀的程序员,十分优秀!