I am implement Interstitial ads In my project but ads is not coming full screen

Here is my ads code :

this.interstitialAds = new InterstitialAd(this, "ca-app-pub-ID");
            this.interstitialAds.setAdListener(this);
            AdRequest adr = new AdRequest();
            // add your test device here
           adr.addTestDevice("8E452640BC83C672B070CDCA8AB9B06B");
            interstitialAds.loadAd(adr);

I am getting Ads like this

enter image description here

And I want like this

enter image description here

How I can set full screen ads ?

有帮助吗?

解决方案

It is default behavior of admob ads, it solely depends on the advertiser to display his ad format. You cannot do anything in this. your ad is full screen you can check this by looking at the close button on top left of screen.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top