Playing multiple files in MediaPlayer one after other In android

前端 未结 3 2022
情歌与酒
情歌与酒 2020-12-16 09:01

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

3条回答
  •  Happy的楠姐
    2020-12-16 09:30

    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)

提交回复
热议问题