How Stop Definitely The Video?
Hello, some way to Stop Definitely the video when the video is playing?. I want to stop, not paused.
player.stop()
It's working, thanks. Do you know any way, to get out the image of player when I stopped? Look, I playing a video, but when I stop definitely the image of current video playing stay here :/, I want show the player in black. Thanks
not support yet
Is there any way to resume the same video
call start() to resume when called pause()
cool i didn't check the method
private boolean isInPlaybackState() {
return (mMediaPlayer != null &&
mCurrentState != STATE_ERROR &&
mCurrentState != STATE_IDLE &&
mCurrentState != STATE_PREPARING);
}
i thought it will not resume even in pause state. Thanks