Interface LevelPlayInterstitialAdListener
-
- All Implemented Interfaces:
public interface LevelPlayInterstitialAdListenerInterface handling interstitial ad events for LevelPlayInterstitialAd. The callbacks will be invoked on the main thread.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdLoaded(LevelPlayAdInfo adInfo)Triggered when an interstitial ad is loaded. abstract UnitonAdLoadFailed(LevelPlayAdError error)Triggered when an interstitial ad fails to load. abstract UnitonAdDisplayed(LevelPlayAdInfo adInfo)Triggered when an interstitial ad is displayed. UnitonAdDisplayFailed(LevelPlayAdError error, LevelPlayAdInfo adInfo)Triggered when an interstitial ad fails to display. UnitonAdClicked(LevelPlayAdInfo adInfo)Triggered when an interstitial ad is clicked. UnitonAdClosed(LevelPlayAdInfo adInfo)Triggered when an interstitial ad is closed. UnitonAdInfoChanged(LevelPlayAdInfo adInfo)Triggered when ad was reloaded and ad info updated. -
-
Method Detail
-
onAdLoaded
abstract Unit onAdLoaded(LevelPlayAdInfo adInfo)
Triggered when an interstitial ad is loaded.
- Parameters:
adInfo- Ad info of the loaded interstitial ad.
-
onAdLoadFailed
abstract Unit onAdLoadFailed(LevelPlayAdError error)
Triggered when an interstitial ad fails to load.
- Parameters:
error- The error that occurred.
-
onAdDisplayed
abstract Unit onAdDisplayed(LevelPlayAdInfo adInfo)
Triggered when an interstitial ad is displayed.
- Parameters:
adInfo- Ad info of the displayed interstitial ad.
-
onAdDisplayFailed
Unit onAdDisplayFailed(LevelPlayAdError error, LevelPlayAdInfo adInfo)
Triggered when an interstitial ad fails to display.
- Parameters:
error- The error that occurred.adInfo- Ad info of the interstitial ad that failed to display.
-
onAdClicked
Unit onAdClicked(LevelPlayAdInfo adInfo)
Triggered when an interstitial ad is clicked.
- Parameters:
adInfo- Ad info of the clicked interstitial ad.
-
onAdClosed
Unit onAdClosed(LevelPlayAdInfo adInfo)
Triggered when an interstitial ad is closed.
- Parameters:
adInfo- Ad info of the closed interstitial ad.
-
onAdInfoChanged
Unit onAdInfoChanged(LevelPlayAdInfo adInfo)
Triggered when ad was reloaded and ad info updated.
- Parameters:
adInfo- The updated interstitial ad info after the reloading.
-
-
-
-