当我在真实设备上运行此代码时,广告横幅会弹出无数次。我应该如何修改此代码才能运行一次? 此代码来自游戏。每当玩家被某物击中时,他就会失去1盾。
private void showBanner() {
adView.setVisibility(View.VISIBLE);
adView.loadAd(new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build());
}
if (player.getShieldStrength() == 0){
runOnUiThread(new Runnable() {
@Override
public void run() {
showBanner();
}
});
}
这是我的logcat:
Aborting last ad request since another ad request is already in progress.
The current request object will still be cached for future refreshes.
...
此runnable由run方法触发。 showBanner是update-method的一部分
@Override
public void run() {
while (playing) {
update();
draw();
control(); }}
答案 0 :(得分:0)
你很困惑。
横幅广告与插页式广告一样不。它没有弹出。
当您请求横幅广告时,您要求广告填充该广告,直到您告诉它停止或隐藏它为止。它会在您在Admob信息中心中配置的刷新周期中显示新广告。它不会展示任何广告。
如果您真的只想在下一场比赛前展示横幅广告,请致电adView.setVisible(VIEW.INVISIBLE)
或adView.setVisible(VIEW.GONE)
请不要重新发布现有问题Ad pops up multiple times