Interface VideoPlayerListener


  • public interface VideoPlayerListener
    This interface used to handle callbacks of content video player. Callback calls on this object should respond to appropriate method calls on VideoPlayer
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onVideoCompleted()
      Fire this callback when content video player completed playback
      void onVideoError()
      Fire this callback when error occurs in video player
      void onVideoPaused()
      Fire this callback when content video player paused playback
      void onVideoPrepared()
      Fire this callback when content video player prepared to play content video
      void onVideoResumed()
      Fire this callback when content video player resumed playback
    • Method Detail

      • onVideoPrepared

        void onVideoPrepared()
        Fire this callback when content video player prepared to play content video
      • onVideoCompleted

        void onVideoCompleted()
        Fire this callback when content video player completed playback
      • onVideoResumed

        void onVideoResumed()
        Fire this callback when content video player resumed playback
      • onVideoPaused

        void onVideoPaused()
        Fire this callback when content video player paused playback
      • onVideoError

        void onVideoError()
        Fire this callback when error occurs in video player