public static interface InterstitialAd.AdListener
Modifier and Type | Method and Description |
---|---|
void |
onInterstitialClick(InterstitialAd interstitialAd)
A user has clicked (tapped) on an Interstitial Ad.
|
void |
onInterstitialDismissed(InterstitialAd interstitialAd)
The Interstitial Ad was dismissed via tapping or some other means.
|
void |
onInterstitialFailedToLoad(InterstitialAd interstitialAd,
AdError error)
The Interstitial Ad failed to load.
|
void |
onInterstitialLoaded(InterstitialAd interstitialAd)
Called when the requested Interstitial Ad is downloaded and ready for display.
|
void |
onInterstitialShown(InterstitialAd interstitialAd)
The interstitial ad is currently being displayed.
|
void onInterstitialLoaded(InterstitialAd interstitialAd)
interstitialAd
- The Ad the listener is being called about.void onInterstitialFailedToLoad(InterstitialAd interstitialAd, AdError error)
interstitialAd
- The Ad the listener is being called about.error
- Error code describing why the Interstitial Ad failed to load.void onInterstitialShown(InterstitialAd interstitialAd)
interstitialAd
- The Ad the listener is being called about.void onInterstitialDismissed(InterstitialAd interstitialAd)
InterstitialAd.AdListener.onInterstitialClick(InterstitialAd)
is called
BEFORE the Ad is dismissed.interstitialAd
- The Ad the listener is being called about.void onInterstitialClick(InterstitialAd interstitialAd)
interstitialAd
- The Ad the listener is being called about.