-
public interface AppstockAdViewVideoListenerListener interface representing banner video events. All methods will be invoked on the main thread.
-
-
Method Summary
Modifier and Type Method Description abstract voidonVideoCompleted(AppstockAdView bannerView)Executed when the video complete its playback abstract voidonVideoPaused(AppstockAdView bannerView)Executed when the video playback is not visible abstract voidonVideoResumed(AppstockAdView bannerView)Executed when the video is paused and visibility constraints are satisfied again abstract voidonVideoUnMuted(AppstockAdView bannerView)Executed when the video playback is unmuted abstract voidonVideoMuted(AppstockAdView bannerView)Executed when the video playback is muted -
-
Method Detail
-
onVideoCompleted
abstract void onVideoCompleted(AppstockAdView bannerView)
Executed when the video complete its playback
- Parameters:
bannerView- view of the corresponding event.
-
onVideoPaused
abstract void onVideoPaused(AppstockAdView bannerView)
Executed when the video playback is not visible
- Parameters:
bannerView- view of the corresponding event.
-
onVideoResumed
abstract void onVideoResumed(AppstockAdView bannerView)
Executed when the video is paused and visibility constraints are satisfied again
- Parameters:
bannerView- view of the corresponding event.
-
onVideoUnMuted
abstract void onVideoUnMuted(AppstockAdView bannerView)
Executed when the video playback is unmuted
- Parameters:
bannerView- view of the corresponding event.
-
onVideoMuted
abstract void onVideoMuted(AppstockAdView bannerView)
Executed when the video playback is muted
- Parameters:
bannerView- view of the corresponding event.
-
-
-
-