public abstract class VideoAdListener
extends java.lang.Object
| Constructor and Description |
|---|
VideoAdListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
onAdClicked()
Triggered when the user taps the AdSpot and the AdSpot is about to perform extra actions
Those actions may lead to displaying a modal browser or leaving your application.
|
void |
onAdDidReachEnd()
Triggered only when AdSpot's video was played until the end.
|
void |
onAdDismissed()
Triggered when the AdSpot disappears on the screen
|
void |
onAdExpired()
Triggered when the AdSpot's loaded ad content is expired.
|
abstract void |
onAdLoadFail(PlayerInfo info)
Triggered when AdSpot failed to load ad content
|
abstract void |
onAdLoadSuccess()
Triggered when the AdSpot has successfully loaded the ad content
|
void |
onAdStarted()
Triggered when the AdSpot appears on the screen
|
void |
onLeaveApp()
Triggered when your application is about to go to the background, initiated by the SDK.
|
public abstract void onAdLoadSuccess()
public abstract void onAdLoadFail(PlayerInfo info)
info - info about reason of fail. The special case - info.isNoAdsFound()public void onAdStarted()
public void onAdDismissed()
public void onAdClicked()
public void onAdDidReachEnd()
public void onAdExpired()
public void onLeaveApp()