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