Android Interstitial Ad Does Not Show
I'm having a problem with an Interstitial Ad that is not displaying. This is the activity that I want to show the ad. import android.content.Intent; import android.graphics.Typefac
Solution 1:
Change interstitialAd = new InterstitialAd(this);
to
interstitialAd = new InterstitialAd(getContext());
And also check if the adUnitId is correct.
Otherwise everything else seems fine. And, no, Interstitial ad wont be affected by the banner in any form since both are completely different entities and are independent of each other.
Post a Comment for "Android Interstitial Ad Does Not Show"