How to resume the mediaplayer?

2019-01-08 11:45发布

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 from the point that it previously was paused..

Any help provide would be really helpful.

7条回答
Summer. ? 凉城
2楼-- · 2019-01-08 12:05

When using seekTo I found it often starts playing with the very start of the track then carries on playing from the point of where seekTo was set.

What worked for me was muted the volume and then crank it back up once the currentProgress matches the current seek (stored in global).

查看更多
We Are One
3楼-- · 2019-01-08 12:09

In the accepted answer, the correct order is:

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

查看更多
孤傲高冷的网名
4楼-- · 2019-01-08 12:11
   public class MainActivity extends AppCompatActivity {

    MediaPlayer mediaPlayer;
   public void play(View view) {
           mediaPlayer.start();
   }
   public void pause(View view){
           mediaPlayer.pause();
   }
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mediaPlayer= MediaPlayer.create(this,R.raw.someaudio);
    }
}

Make two buttons for play and pause. And use this code. It worked for me.

查看更多
甜甜的少女心
5楼-- · 2019-01-08 12:22

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();
查看更多
戒情不戒烟
6楼-- · 2019-01-08 12:26

in case you use two Buttons one for play and one for pause then the below code is working and tried:

                playbtn.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    mPlayer = MediaPlayer.create(MainActivity.this,         
                    R.raw.adhan);

                    if (mPlayer.isPlaying()) {


                    } else {
                        mPlayer.seekTo(length);
                        mPlayer.start();
                      }

                }
                });

               pausebtn.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {

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


                  }
                });
查看更多
聊天终结者
7楼-- · 2019-01-08 12:27

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.

查看更多
登录 后发表回答