public interface AppLovinAdViewEventListener
Created by thomasso on 6/25/17.
| Modifier and Type | Method and Description |
|---|---|
void |
adClosedFullscreen(AppLovinAd ad,
AppLovinAdView adView)
This method is invoked after the fullscreen content is dismissed.
|
void |
adFailedToDisplay(AppLovinAd ad,
AppLovinAdView adView,
AppLovinAdViewDisplayErrorCode code)
This method is invoked if the ad view fails to display an ad.
|
void |
adLeftApplication(AppLovinAd ad,
AppLovinAdView adView)
This method is invoked before the user is taken out of the application after a click.
|
void |
adOpenedFullscreen(AppLovinAd ad,
AppLovinAdView adView)
This method is invoked after the ad view presents fullscreen content.
|
void adOpenedFullscreen(AppLovinAd ad, AppLovinAdView adView)
This method is invoked on the main UI thread.
ad - Ad that the ad view presented fullscreen content for.adView - Ad view that presented fullscreen content.void adClosedFullscreen(AppLovinAd ad, AppLovinAdView adView)
This method is invoked on the main UI thread.
ad - Ad for which the fullscreen content is dismissed for.adView - Ad view for which the fullscreen content it presented is dismissed for.void adLeftApplication(AppLovinAd ad, AppLovinAdView adView)
This method is invoked on the main UI thread.
ad - Ad for which the user will be taken out of the application for.adView - Ad view containing the ad for which the user will be taken out of the application for.void adFailedToDisplay(AppLovinAd ad, AppLovinAdView adView, AppLovinAdViewDisplayErrorCode code)
This method is invoked on the main UI thread.
ad - Ad for which the ad view failed to display for.adView - Ad view which failed to display the ad.code - Error code specifying the reason why the ad view failed to display ad.