I have music that I play via
AssetFileDescriptor assetDescriptor = getAssets().openFd(filename);
MediaPlayer mediaPlayer = new MediaPlayer();
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mediaPlayer.setDataSource(assetDescriptor.getFileDescriptor(), assetDescriptor.getStartOffset(), assetDescriptor.getLength());
mediaPlayer.prepareAsync();
mediaPlayer.setVolume(1, 1);
mediaPlayer.start();
How should I detect if this music stopped playing so that I can start playing next one?
I have tried constantly checking (once every second), via
((AudioManager) application.getSystemService(Context.AUDIO_SERVICE)).isMusicActive();
But that doesn't seem to work(always returns true). Is there any other means for me to be notified of the music stopped playing so that I can start the next one?
Use
MediaPlayer.onCompletionListener
to listen to the event when a track ends. The next audio file will play after this. An exampleAn added recommendation, to play multiple audios on after another, you don't have to create nested onCompletionListener. Instead use the below code.