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
0
votes
2 answers

Why my interstitial ads always load/show on app

i had success Implementation interstitial ads admob but i have 1 problem, why interstitial ads always show every second on my app, so i cannot play my app because this interstitial ads any want help me how to make interstitial ads show only 1…
lostkids
  • 1
  • 1
0
votes
1 answer

How can I remove admob's interstitial ads from this code

So as it says in the title how can I remove the code for admob interstitial ads from my application? here is the activity.java code with the interstitial code in it I want to remove it and add a different company's ads and I am afraid I might screw…
Kareem
  • 1
  • 1
  • 2
0
votes
1 answer

Implementing Interstitial ads with AdMobs with the JNI

Is it possible to start an interstitial ad by calling a Java method from C++? What I am trying to do is at a certain point in my game call the java method and from there it starts the interstitial ad. The problem is it's straight up crashing the…
enr4ged
  • 121
  • 11
0
votes
1 answer

Interstitial Ads coming full screen on screen in android

Hi I am using Admob Interstitial ads in my android application but Interstitial Ads are coming full screen in the application but I want to display Interstitial ads Like a banner ads. Here my ads code: private InterstitialAd interstitialAds =…
deep
  • 169
  • 2
  • 18
0
votes
1 answer

How to load ADInterstitialAd only when required in iOS?

I would like to show interstitial ads in my iOS application for some specified time interval. Also, I do not want to disturb the User Interaction. I would like to show this Interstitial Ad when user tries to navigate from the scree/some other…
Bharath
  • 3,001
  • 6
  • 32
  • 65
0
votes
2 answers

Android: Ad to be loaded first and shown when the proper time comes

I am calling showAd()inside OnResume to call for interstitialAd. ShowAd() public void showAd() { SavedFrequency = getSharedPreferences("adfreq", MODE_PRIVATE); AdfrequencyInt = SavedFrequency.getInt("adfreq", 0); AdfrequencyInt++; …
pearmak
  • 4,979
  • 15
  • 64
  • 122
0
votes
1 answer

google admob ios: Request Error: No ad to show

I found a related thread AdMob Ios Error: Failed to receive ad with error: Request Error: No ad to show but it does not solve my problem. I am trying to create an Interstitial ad using the latest example project from google code: …
Ketan
  • 487
  • 10
  • 23
0
votes
1 answer

how could i edit Admob adunit size from banner to interstitial?

i just found out myself helpless when i changed the ad type in my app from banner to interstitial. But i used the same ad-banner id from admob. though the interstitial are appearing just fine, my ecpm is quite low.... i tried to edit admob…
Ashish P
  • 1,463
  • 1
  • 20
  • 29
0
votes
1 answer

Burstly OAIAutoRefreshManager showing interstitials without the app requesting for them

We have a weird issue where the burstly interstitial ads keep popping up randomly without our app requesting them. We're using the Burstly SDK for iOS. Looking at the burstly logs, it shows something like [;2013-11-06 16:01:13.209…
tbag
  • 1,268
  • 2
  • 16
  • 34
0
votes
1 answer

How to make sure activity is running (AdMob interstitial)

I have implemented AdMob interstitial in my app the method works like this: I construct ads object in my activity. (Ads object has reference to the activity) In my ads object I check if interstitial was shown in last three minutes with timer, and…
Datenshi
  • 1,191
  • 5
  • 18
  • 56
0
votes
6 answers

Interstitial Ad Loading After every 1 Minte

I want to Display a Interstitial Ad after every one minute... can any one please explain with sample code ... thanks Please interstitialAds = new InterstitialAd(this, "Your_Pub_ID"); final AdRequest adRequest = new AdRequest(); …
Sam
  • 121
  • 1
  • 2
  • 11
0
votes
1 answer

How to create android Ad Interstitials?

i dont get it InterstitialAd and i coudnt find any example.if you have a example, can you post it .i try banner is it works . but when i try InterstitialAd i get error.i want when i open app i wanna see ads . Thanks!! package…
user2741142
  • 11
  • 2
  • 6
0
votes
1 answer

Showing InMobi interstitial on activity finish()

I'm implementing interstitial banners on this Android app and wish them to appear when user finish()es the app through back button. It's already working fine when using solo AdMob interstitial by AdMob mediation, this way: @Override public void…
Herbert
  • 3
  • 4
0
votes
1 answer

Chartboost interstitial ads does not wo

Chartboost does not show interstitial ads in my app. I checked the location settings and found everything is just right. I suspect some problem in below piece of my code. ChartBoostAndroid.init("1234a", "5678b", true)…
MogambO
  • 15
  • 7
0
votes
2 answers

Google AdMobs interstitial on reopening timed out

I would like to add some ads in my application, and especially an interstitial when the app enter foreground. I've created this method in my AppDelegate.m: - (void)splashInterstitial { UIImage *image; if (TEST_IPHONE_5) { image =…
Nicolas Roy
  • 3,773
  • 5
  • 27
  • 42