在Android中一个接一个地播放MediaPlayer中的多个文件
问题描述:
我在MediaPlayer for android中播放多个mp3文件时遇到问题...它将所有文件一起播放并造成混乱.我希望解决方案是一次播放每个文件,然后播放其他文件.
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 at a time and then after it other file get played.
答
各种MediaPlayer回调都使用它们,例如:
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;
}