MediaPlayer instance: stop behaves like a pause

蓝咒 提交于 2019-12-01 05:45:58

doesn't the state diagram http://developer.android.com/reference/android/media/MediaPlayer.html states that stop means "stay in stopped state" ?

Calling stop() stops playback and causes a MediaPlayer in the Started, Paused, Prepared or PlaybackCompleted state to enter the Stopped state.

Once in the Stopped state, playback cannot be started until prepare() or prepareAsync() are called to set the MediaPlayer object to the Prepared state again. Calling stop() has no effect on a MediaPlayer object that is already in the Stopped state.

There's no affirmation that stop() should change the CurrentPosition.

There's no affirmation that calling the prepare() should change the CurrentPosition.

So, to go to the beginning of the music, you should mannualy set its position.

But I agree with you. Since the pause() method states it will resume playing from the current position, I'd expect it get back to the beginning when stop() is called.

And it has some impact when you need to call the prepare()

For example, the call to prepare() can take a long time to execute, because it might involve fetching and decoding media data.

so stop() needs to call prepare() that can make it take longer, while pause() has less impact: you can call the start() right after.

I think this might be a bug, because the API documentation for the MediaPlayer start method suggests the behavior that you expect:

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.

For the time being, explicitly calling seekTo(0) once the player is prepared seems to be a reasonable workaround.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!