Skip to main content

Interstitial

Interstitial ads are full-screen ads.

Check If Ad Is Loaded

You can check whether or not an ad is loaded at a certain moment. This method returns a boolean value, representing the interstitial ad loading status.

Appodeal.IsLoaded(AppodealAdType.Interstitial);
Check Ad Loading Status

We recommend you always check whether an ad is available before trying to show it.

Example:

if(Appodeal.IsLoaded(AppodealAdType.Interstitial)) {
Appodeal.Show(AppodealShowStyle.Interstitial);
}

Display

To show an interstitial ad, you need to call the following method:

Appodeal.Show(AppodealShowStyle.Interstitial);

You can use our demo app as a reference project.

Demo App


If you want to use advanced Interstitial integration, you can find detailed documentation here