Package 

Interface AppstockAdViewVideoListener


  • 
    public interface AppstockAdViewVideoListener
    
                        

    Listener interface representing banner video events. All methods will be invoked on the main thread.

    • Method Summary

      Modifier and Type Method Description
      abstract void onVideoCompleted(AppstockAdView bannerView) Executed when the video complete its playback
      abstract void onVideoPaused(AppstockAdView bannerView) Executed when the video playback is not visible
      abstract void onVideoResumed(AppstockAdView bannerView) Executed when the video is paused and visibility constraints are satisfied again
      abstract void onVideoUnMuted(AppstockAdView bannerView) Executed when the video playback is unmuted
      abstract void onVideoMuted(AppstockAdView bannerView) Executed when the video playback is muted
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.