How to resume the mediaplayer?

Solution 1:

Thank you for your attention but I've got it myself

for pausing the Mediaplayer I used:

Mediaplayer.pause();
length=Mediaplayer.getCurrentPosition();

and for resuming the player from the position where it stopped lately is done by:

Mediaplayer.seekTo(length);
Mediaplayer.start();

Solution 2:

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.

Solution 3:

In the accepted answer, the correct order is:

Mediaplayer.start();
Mediaplayer.seekTo(length);