-
public interface VideoControlsSeekListenerInterface definition for a callback to be invoked when the media has external seek requests
-
-
Method Summary
Modifier and Type Method Description abstract booleanonSeekStarted()Occurs when the media has entered a state of waiting until the onSeekEnded is called. abstract booleanonSeekEnded(long seekTime)Occurs when the media has finalized the request to seek. -
-
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. Thismay be called after onSeekStarted or on its own.
- Parameters:
seekTime- The time in milliseconds to seek to
-
-
-
-