Android Media Player plays song x times

I would like to play a song x times, for example 1,2,3..etc using an android player. let me know if there is a way to do this using android api. Thanks to

+4


source to share


2 answers


As Wamasa said, you can use setLooping to play endlessly. To only play a specific countdown time, you can add an onCompletionListener to your MediaPlayer:



int count = 0; // initialise outside listener to prevent looping

mediaPlayer.setOnCompletionListener(new OnCompletionListener(){
  int maxCount = 3;

  @Override
  public void onCompletion(MediaPlayer mediaPlayer) {
    if(count < maxCount) {
      count++;
      mediaPlayer.seekTo(0);
      mediaPlayer.start();
    }
}});

      

+8


source


If you are using the MediaPlayer class, try using MediaPlayer.setLooping (true)



+1


source







All Articles