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