Interface InterstitialAdUnitListener
-
public interface InterstitialAdUnitListenerListener interface representing InterstitialAdUnit events. All methods will be invoked on the main thread.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAdClicked(InterstitialAdUnit interstitialAdUnit)Executed when interstitialAdUnit is clicked.voidonAdClosed(InterstitialAdUnit interstitialAdUnit)Executed when interstitialAdUnit is closed.voidonAdDisplayed(InterstitialAdUnit interstitialAdUnit)Executed when the ad is displayed on screen.voidonAdFailed(InterstitialAdUnit interstitialAdUnit, AdException exception)Executed when an error is encountered on initialization / loading or display step.voidonAdLoaded(InterstitialAdUnit interstitialAdUnit)Executed when the ad is loaded and is ready for display.
-
-
-
Method Detail
-
onAdLoaded
void onAdLoaded(InterstitialAdUnit interstitialAdUnit)
Executed when the ad is loaded and is ready for display.- Parameters:
interstitialAdUnit- view of the corresponding event.
-
onAdDisplayed
void onAdDisplayed(InterstitialAdUnit interstitialAdUnit)
Executed when the ad is displayed on screen.- Parameters:
interstitialAdUnit- view of the corresponding event.
-
onAdFailed
void onAdFailed(InterstitialAdUnit interstitialAdUnit, AdException exception)
Executed when an error is encountered on initialization / loading or display step.- Parameters:
interstitialAdUnit- view of the corresponding event.exception- exception containing detailed message and error type.
-
onAdClicked
void onAdClicked(InterstitialAdUnit interstitialAdUnit)
Executed when interstitialAdUnit is clicked.- Parameters:
interstitialAdUnit- view of the corresponding event.
-
onAdClosed
void onAdClosed(InterstitialAdUnit interstitialAdUnit)
Executed when interstitialAdUnit is closed.- Parameters:
interstitialAdUnit- view of the corresponding event.
-
-