Package 

Interface VideoControlsSeekListener


  • 
    public interface VideoControlsSeekListener
    
                        

    Interface definition for a callback to be invoked when the media has external seek requests

    • Method Summary

      Modifier and Type Method Description
      abstract boolean onSeekStarted() Occurs when the media has entered a state of waiting until the onSeekEnded is called.
      abstract boolean onSeekEnded(long seekTime) Occurs when the media has finalized the request to seek.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onSeekStarted

         abstract boolean onSeekStarted()

        Occurs when the media has entered a state of waiting until the onSeekEnded is called.

      • onSeekEnded

         abstract boolean onSeekEnded(long seekTime)

        Occurs when the media has finalized the request to seek. This may be called after onSeekStarted or on its own.

        Parameters:
        seekTime - The time in milliseconds to seek to