I am having Problem in playing multiple mp3 files in MediaPlayer for android ...It plays all files together and creates mess.I want the solution that it just play each file
there is various MediaPlayer callback use them like :
http://www.androidadb.com/class/on/OnCompletionListener.html
mMediaPlayer.setOnCompletionListener(new OnCompletionListener() {
public void onCompletion(MediaPlayer theMediaPlayer) {
mParent.playNextAudio();
mParent = null;
}
http://developer.android.com/reference/android/media/MediaPlayer.html#setOnCompletionListener(android.media.MediaPlayer.OnCompletionListener)