Questions tagged [interstitial]

Full screen advertisements for Android and iOS applications.

Full screen advertisements for Android and iOS applications. Phones and tables for both platforms are supported.

An interstitial ad covers the entire device screen and can be dismissed.

812 questions
3
votes
4 answers

Interstitial Ad's Listener's onAdLoaded() won't run

interstitial.setAdListener(new AdListener(){ public void onAdLoaded(){ display(); } }); I tried with the debugger, the 1st line was run, but the second line was simply not run. This is how I initialize the ad in the onCreate…
zbz.lvlv
  • 3,597
  • 6
  • 34
  • 38
3
votes
1 answer

how to call interstitial 2nd time

I want to show interstitial in same activity more than one time. I am using below method for interstitial but it show interstitial only one time and never reloaded. int[] images = { R.drawable.r1, R.drawable.r2, R.drawable.r3, R.drawable.r4,…
HBBR
  • 77
  • 1
  • 7
3
votes
1 answer

In Google DFP, "Out of Page" not showing up on the trafficked page

We are migrating our ad infrastructure from using adtech to DFP. We are facing a particular roadblock regarding any ads which are of the type out of page. We have pre-stitial and wallpaper/skin ads of the type out-of-page. Both face same issue. I…
Chantz
  • 5,883
  • 10
  • 56
  • 79
3
votes
1 answer

iOS 7 iAd interstitial ads can not be closed by user

when i display interstitial ads with [interstitial presentFromViewController:self]; i get the warning that this method is deprecated in iOS 7. But it still works fine! When i display the ad view with [self…
Banjalucan
  • 115
  • 1
  • 9
3
votes
1 answer

how to use ad mob with google web designer?

I have recently started using google web designer to try and create some interstitials. When I publish my ad in "admob format", I get some zip file on my local host. What do I do with it in order to "insert it" into Ad mob as a new ad?
Sagi Mann
  • 2,967
  • 6
  • 39
  • 72
3
votes
2 answers

How to close admob inersitial after click on it

I use AdMob Interstitials in my Android app in a simple way, just something like in example from https://developers.google.com/mobile-ads-sdk/docs/admob/advanced?hl=no-NO&csw=1#android This code works correct. But there is one extra thing I wanna…
Den Doeson
  • 168
  • 1
  • 13
3
votes
3 answers

How to automatically close admob interstitial ad if users click the Android home button?

I was using the interstitial ad from Admob in my android app. The interstitialAd.show() is called at certain events of the app. Everything worked fine but one annoying use case with the ad. If users click HOME while the ad is displaying or the ad…
Andy Shiue
  • 493
  • 7
  • 11
3
votes
1 answer

DoubleClick - Interstitial advertise sizing/cropping/center placing -> Impossible?

Following this code (https://developers.google.com/mobile-ads-sdk/docs/admob/advanced): import com.google.ads.*; public class BannerExample extends Activity implements AdListener { private InterstitialAd interstitial; @Override public void…
VincentLamoute
  • 800
  • 1
  • 9
  • 16
2
votes
0 answers

Solution for the implementation of interstitial ads of admob (SwiftUI)

Starting with iOS16, there was a problem with the implementation of AdMob interstitial advertising. I am using the SwiftUI framework. I looked at many sources, but unfortunately I did not find a solution. Link to on a similar topic, but without a…
Aleksei
  • 79
  • 6
2
votes
1 answer

Is Admob Interstitial ad recall itself if failed to load?

I just wanna know, If Interstitial ad failed to load at first time, is it gonna recall itself after some time to load again? or I have to recall it manually by onAdFailedToLoad handler?
md sohan
  • 73
  • 4
2
votes
1 answer

Flutter Load Ad Error in using google_mobile_ads package

I am getting an error like Load Ad Error when using the google_mobile_ads package in Flutter . The complete error I got is: LoadAdError(code: 1, domain: com.google.android.gms.ads, message: Error building request URL., responseInfo:…
D19-stack
  • 21
  • 1
2
votes
1 answer

Publisher data not found for Ads in @capacitor-community/admob

I am using capacitor-community/admob in my Ionic 5 and Capacitor 3 project. I have completed all the setup as per documentation and test interstitial and rewardedVideo ads are working fine with the test ads ids provided here. I have set up my Admob…
Tapas Mukherjee
  • 2,088
  • 1
  • 27
  • 66
2
votes
0 answers

Questions regarding FullScreenContentCallback

I used to start a new activity using adlistener on an interstitial ad like below. showInterstitial(); mInterstitialAd.setAdListener(new AdListener() { @Override public void onAdClosed() { startNextLevel(); } }); Since RewardedAd and InterstitialAd…
hlee1159
  • 21
  • 1
2
votes
0 answers

'InterstitialAd' is abstract; cannot be instantiated

I'm updating one of my Android apps but I'm finding some problems concerning AdMob implementation (which was working well on previous versions). This is my code: public class Edition extends AppCompatActivity { private InterstitialAd…
Tsilaicos
  • 435
  • 2
  • 13
2
votes
2 answers

Flutter App Crashes when Trying to Load Interstitial Ad

I am trying to put an interstitial ad on one of the screens in my app. My banner ads work perfectly fine. However, whenever the app tries to load the ad, <_interstitial.load();>, it crashes. Code with interstitial ad: import…
Klein
  • 23
  • 4