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?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

With the new SDK now it is:

AdView.loadAd(new AdRequest());
link|improve this answer
feedback

Old API version:

AddView.requestFreshAd()

New API version:

AdView.loadAd(new AdRequest())

Also, you can simply set a refresh interval with the refreshInterval attribute on the AdView element in your layout XML file. Or you can set the refreshInterval for the ads in your app via your account settings on the AdMob website.

Documentation: http://code.google.com/mobile/ads/docs/android/intermediate.html#adrefresh

link|improve this answer
2  
For people who stumble across this late - requestFreshAd() does not exist. The later part of refreshInterval works beautifully. – Rijvi Rajib Aug 22 '11 at 8:23
1  
requestFreshAd() was removed from the API at some point. However it was available at the time I originally wrote this answer. – mbaird Jan 23 at 18:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.