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.
- UPM Distribution
- Manual Distribution
Appodeal.IsLoaded(AppodealAdType.Interstitial);
Appodeal.isLoaded(Appodeal.INTERSTITIAL);
Check Ad Loading Status
We recommend you always check whether an ad is available before trying to show it.
Example:
- UPM Distribution
- Manual Distribution
if(Appodeal.IsLoaded(AppodealAdType.Interstitial)) {
Appodeal.Show(AppodealShowStyle.Interstitial);
}
if(Appodeal.isLoaded(Appodeal.INTERSTITIAL)) {
Appodeal.show(Appodeal.INTERSTITIAL);
}
Display
To show an interstitial ad, you need to call the following method:
- UPM Distribution
- Manual Distribution
Appodeal.Show(AppodealShowStyle.Interstitial);
Appodeal.show(Appodeal.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