-
- All Implemented Interfaces:
@MainThread() public interface InterstitialAdLoadListener
A listener for receiving notifications during the lifecycle of an interstitial ad.
-
-
Method Summary
Modifier and Type Method Description abstract voidonAdLoaded(@NonNull() InterstitialAd interstitialAd)Notifies when ad is loaded. abstract voidonAdFailedToLoad(@NonNull() AdRequestError error)Called when an interstitial ad request failed. -
-
Method Detail
-
onAdLoaded
abstract void onAdLoaded(@NonNull() InterstitialAd interstitialAd)
Notifies when ad is loaded.
- Parameters:
interstitialAd- interstitial ad, which is ready to be shown.
-
onAdFailedToLoad
abstract void onAdFailedToLoad(@NonNull() AdRequestError error)
Called when an interstitial ad request failed.
- Parameters:
error- see errors here AdRequestError
-
-
-
-