Using a single AdRob AdRequest for multiple AdViews?

I have an Android app that has several AdViews, and each AdView has its own AdRequest. But is it possible / possible to use only one AdRequest for each AdView? Does it even matter? (Of course, it matters, but is it worth thinking about?)

+7
source share
1 answer

You can use the same AdRequest for multiple requests. This is just a simple object that contains some meta information about the ad you want to download.

Remember that only one AdView can be displayed in action. If you really want to have a static AdRequest object used for different actions, this will work. But it may be just as easy to create a new request every time you want to load an ad.

+6
source

All Articles