Friday 13 July 2018

How to avoid re-loading of Admob ads upon orientation change, without using configChanges?

Using the banners sample here, I noticed that if I change the orientation, the ad is gone, and then reloads itself (takes time), so there is a time that nothing is shown, each time I change orientation.

I know it's possible to set configChanges for the activity (and it actually works), but this is not a recommended thing to do in general.

What else can be done to avoid re-loading of ads, on each configuration change?

I want Admob to load ads once (and the rest in the background, for new ones), and then show them, and avoid re-loading when I change orientation. Just show what's best for the current configuration (orientation for example), each time I reach it.


EDIT: I've put a bounty on this, because Google/Firebase support told me via email it's actually possible to cache the ads:

The Ads SDK won't cache ads for you, however you can implement an 'AdManager' style class, most likely a singleton or an instance attached to your application instance, which can manage caching for you.

As you recognize it's an Android pattern to destroy and recreate activities on orientation, instance state is usually saved and restored via a bundle, but this is not applicable to views.

If you wish to optimize the reload time of the banner view in this scenario, I would recommend making your ad request via an AdManager class, and the AdManager can then apply some logic to cache ads such as your banner view for a certain amount of time, and return the previous banner if it is still valid for the new request (which you would make on orientation change).

And :

This idea of caching ads is not implemented by the SDK, as it is difficult to determine the best caching logic to apply in all cases, thus it is left to the developer to implement caching that suits their use case, if desired.

Possibly having a banner ad decoupled from the 'AdView' class would make for more appropriate cacheable objects, however this is not currently the case.

Therefore as it is, yes we suggest that in order to prefetch / cache a banner ad, you need to store the 'AdView'. Instead of using an AdManager however, another supported and indeed recommended approach would be to use a ViewModel, see https://developer.android.com/guide/topics/resources/runtime-changes#RetainingAnObject and https://developer.android.com/topic/libraries/architecture/viewmodel. These are designed for exactly this kind of use case.

If it is indeed possible, I'd like to know exactly how to do it. Please, whoever succeeds in doing it, show in code what can be done.



from How to avoid re-loading of Admob ads upon orientation change, without using configChanges?

No comments:

Post a Comment