1

I have implemented google's Admob banner ads in my app. I tried this for that

AdView mAdView = (AdView) findViewById(R.id.adView);
    AdRequest adRequest = new AdRequest.Builder()

            // Add a test device to show Test Ads
            .addTestDevice(AdRequest.DEVICE_ID_EMULATOR).addTestDevice("")
            .build();

    mAdView.loadAd(adRequest);

I want to know number of banner ads i can show so that policy don't get conflict.

Willi Mentzel
  • 27,862
  • 20
  • 113
  • 121
Susheel Kumar
  • 29
  • 1
  • 7

1 Answers1

4

As you can read here

the allowed number of banners per page is one.

enter image description here

fabdurso
  • 2,366
  • 5
  • 29
  • 55
  • also, I can suggest you to `AdRequest adRequest = new AdRequest.Builder()` when your view loads (so just one time), and then `mAdView.loadAd(adRequest);` when you want to show the ad. – fabdurso Mar 09 '16 at 11:38
  • I am new to stackoverflow. i dont know how to accept answer though i tried to upvote but i dont have that much reputation. – Susheel Kumar Mar 10 '16 at 05:24
  • to accept the answer you have to click here on the button as shown in this picture http://i.stack.imgur.com/QpogP.png – fabdurso Mar 10 '16 at 10:07
  • 2
    This "number of ads per page" has been removed by Google. Does it mean there is no more limit now? – user2872856 Oct 14 '17 at 08:49
  • Regarding the removal of "number of ads per page": https://marketingland.com/google-removes-adsense-3-ads-per-page-limit-focuses-content-ad-balance-189064 – rolznz Sep 14 '18 at 08:21