How to resume the mediaplayer?

后端 未结 6 1981
不知归路
不知归路 2020-12-01 02:17

I am using a media player.

I have the option for starting ,stopping and pausing the player. The problem I have is that I cannot find the option to resume the song fr

6条回答
  •  情话喂你
    2020-12-01 02:41

    I think you should go through the documentation found here: http://developer.android.com/reference/android/media/MediaPlayer.html

    Some quotes from the docs:

    Playback can be paused and stopped, and the current playback position can be adjusted. Playback can be paused via pause(). When the call to pause() returns, the MediaPlayer object enters the Paused state. Note that the transition from the Started state to the Paused state and vice versa happens asynchronously in the player engine. It may take some time before the state is updated in calls to isPlaying(), and it can be a number of seconds in the case of streamed content.

    • Calling start() to resume playback for a paused MediaPlayer object, and the resumed playback position is the same as where it was paused. When the call to start() returns, the paused MediaPlayer object goes back to the Started state.
    • Calling pause() has no effect on a MediaPlayer object that is already in the Paused state.

    States explained:

    States of MediaPlayer

    And quote from the start() method of the MediaPlayer

    public void start ()

    Starts or resumes playback. If playback had previously been paused, playback will continue from where it was paused. If playback had been stopped, or never started before, playback will start at the beginning.

    So to answer your question directly, to resume the paused MediaPlayer instance from the point where it was paused use start() again on that instance.

提交回复
热议问题