简体   繁体   English

我们有责任重新加载新的AdMob标语广告吗?

[英]Are We responsible for reloading new AdMob Banner Ads?

[Edit at bottom.] [底部编辑。]

When we want a new Interstitial AdMob add during a break in the normal flow of the App, we are responsible for triggering a new ad to be loaded. 当我们希望在App正常流程中断期间添加新的非页内广告AdMob时,我们负责触发要加载的新广告。 I do this by: 我这样做是:

mInterstitialAd.loadAd(new AdRequest.Builder()
                .build());

I do this every time I want a new Interstitial add to be triggered. 每当我希望触发新的非页内广告添加时,我都会执行此操作。 I think that is right? 我认为是对的吗?

However, I also have a Banner ad at the bottom of one of my activities. 但是,我的一项活动的底部也有一个横幅广告。 At the start I get a new ad with: 一开始,我会收到一个新广告:

adRequest = new AdRequest.Builder()
            .build();
mAdView.loadAd(adRequest);

Now this is the bit I am unsure about. 现在这是我不确定的地方。

If I feel it has been a bit of a while since that last Banner ad has been called do I call that adRequest = new AdRequest.Builder().build(); mAdView.loadAd(adRequest); 如果我觉得自从最后一个横幅广告被调用以来已经过了一段时间, 我会称那adRequest = new AdRequest.Builder().build(); mAdView.loadAd(adRequest); adRequest = new AdRequest.Builder().build(); mAdView.loadAd(adRequest); bit of code again? 再来一点代码?

Am I responsible for doing this? 我要为此负责吗? Or does AdMob have something in the background they run that updates those banner ads? 还是AdMob在后台运行某些东西来更新那些横幅广告?

Edit: 编辑:

On this page it says do not refresh banner ads in less than 60 seconds. 在此页面上说不要在60秒内刷新横幅广告。 I am doing it every 5 minutes, and only after a user trigger event. 我每5分钟执行一次,并且仅在用户触发事件之后执行。 But within that statement is the implication that I am responsible for the refresh of a banner ad. 但在该声明中暗示我负责横幅广告的刷新。 Here is the page here: 这是这里的页面:

https://support.google.com/admob/answer/2936217?hl=en&ref_topic=2745287 https://support.google.com/admob/answer/2936217?hl=en&ref_topic=2745287

What does everyone else think? 其他人怎么想?

  1. Yes. 是。 Do loadAd() again. 再次执行loadAd()
  2. You can recreate banner and call request again. 您可以重新创建横幅并再次调用请求。
  3. Change refresh time at your admin panel. 在管理面板上更改刷新时间。
  4. Try to use more useful types of ads. 尝试使用更有用的广告类型。 Such as fullscreen, video, native ads, etc. 例如全屏,视频,原生广告等。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM