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) { if (intent.hasExtra("songIndex")) { Random random = new Random(); songIndex = random.nextInt((songList.size() - 1) + 1); playSongWithIndex(songIndex); } } } and method for play song : public void playSongWithIndex(final int songIndex) { progressBar.setVisibility(View.VISIBLE); if (music_exist.exists()) { playMusicOfflineMode(