Skip to content Skip to sidebar Skip to footer

Android Media Player Restart Audio After Calling Stop

I'm able to stream audio and stop it without any problem, but when I try to start it again after stop, it doesn't start and I get an IllegalState exception. Here is what I'm doing:

Solution 1:

In case you don't have access to the data source in the current scope, you can do:

mp.pause();
mp.seekTo(0);

Then when you do

mp.start();

play will start from the beginning again.

I needed this because I had a button that toggled playing. I had a togglePlayer method in which the datasource was out of scope.

Solution 2:

Add this:

mp.reset();
mp.setDataSource(MEDIA_PATH);
mp.prepare();
mp.start();

Solution 3:

you can check the state diagram of mediaplayer http://developer.android.com/reference/android/media/MediaPlayer.html after the mediaplayer stopped, must call prepare, when prepared,and then you can call start method.

Post a Comment for "Android Media Player Restart Audio After Calling Stop"