Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to force Admob to refresh on Android

Tags:

android

admob

I have an app with Admob ads on it but I find that when I use it the ad almost never refreshes because I don't change activities, instead I just update a text view when buttons are pressed. I have tried searching this on Google but keep comming up short.

I would like to tell the app to refresh the add occasionally, such as after two button clicks or something like that. Does anyone know how to do this and potentially have some sample code for it?

like image 942
FuegoFingers Avatar asked Oct 02 '10 22:10

FuegoFingers


People also ask

Why AdMob ads are not showing?

Ads won't show if you haven't integrated the Google Mobile Ads SDK correctly. Is your ad implementation code working properly? Test your implementation code to check that ads can show. You can also use ad inspector to test your app's ad serving.

How long does it take for AdMob to show ads?

Ad serving When apps are newly registered with AdMob, it typically takes up to an hour and a few ad requests to allow inventory to build. Because of this, you may not see live impressions immediately. Note: In some cases, it may take longer than an hour. Please wait 24 hours before seeking additional help.

Is AdMob legal?

If you use Google AdMob for your mobile app, you're going to be collecting and using user data. This means you're legally required by Google, app store platforms, and international law to let users know about this data collection and usage.

How do I increase AdMob fill rate?

You cannot force Admob to give you better fill-rate. The best way to go if you're using Admob is to create multiple applications, and connect them through House Ads. That ways, even if your app is not getting ads, it is at least promoting your other apps, which leads to overall increase in your application downloads.


1 Answers

With the new SDK now it is:

AdView.loadAd(new AdRequest());
like image 71
Saša Šijak Avatar answered Oct 03 '22 10:10

Saša Šijak