Skip to content Skip to sidebar Skip to footer

How To Shuffle List Song With Media Player Android

I've done shuffle in mediaplayer for a list of songs but dos not correct work please help: @Override public void onCompletion(MediaPlayer mediaPlayer) { if (isShuffle) {

Solution 1:

Use collections shullfe:

long seed = System.nanoTime();
Collections.shuffle(songList, newRandom(seed));

Solution 2:

Why not create Media player with this way?

 G.mediaPlayer = MediaPlayer.create(this,Uri.parse("YourFilePath");//this is a context//Then start it without preparation.
 G.mediaPlayer.start();

Post a Comment for "How To Shuffle List Song With Media Player Android"