Interstitial
Interstitial ads are full-screen advertisements.
Check If Ad Is Loaded
You can check if the ad has been loaded before showing it. This method returns a boolean value indicating whether or not the interstitial has been loaded.
- Kotlin
- Java
Appodeal.isLoaded(Appodeal.INTERSTITIAL)
Appodeal.isLoaded(Appodeal.INTERSTITIAL);
We recommend you to check ad caching before trying to show it.
- Kotlin
- Java
if (Appodeal.isLoaded(Appodeal.INTERSTITIAL)) {
Appodeal.show(this, Appodeal.INTERSTITIAL)
}
if (Appodeal.isLoaded(Appodeal.INTERSTITIAL)) {
Appodeal.show(this, Appodeal.INTERSTITIAL);
}
Display
- Kotlin
- Java
Appodeal.show(this, Appodeal.INTERSTITIAL)
Appodeal.show(this, 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