如何在stopPlayback之后恢复播放? (机器人)

时间:2014-03-30 13:45:02

标签: android

继续这个主题:

How to stop video playing in VideoView programmatically in android?

stopPlayback后如何恢复播放?

2 个答案:

答案 0 :(得分:13)

停止视频

 // will stop and release the media player instance and move to idle state
 videoView.stopPlayback() 

开始新游戏

// fist set video path
videoView.setVideoPath("path"); // will release the previous media player instance if any
videoView.start() // will start if not in prepare/error state 

暂停当前播放

// pause the video
videoView.pause()  // will pause if already playing

从当前暂停位置恢复视频

// resume the video
videoView.resume()  // will resume from the last paused state

答案 1 :(得分:-1)

MediaPlayer mediaPlayer = new MediaPlayer();

mediaPlayer.pause(); 长度= mediaPlayer.getCurrentPosition();

mediaPlayer.seekTo(长度); mediaPlayer.start();