Back to project page MusicPlayer.
The source code is released under:
MIT License
If you think the Android project MusicPlayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dsvoronin.musicplayer; //www . j a va 2 s. c o m import org.jetbrains.annotations.NotNull; import java.util.Collections; import java.util.List; public class ShuffleSongPicker extends AbstractSongPicker { @Override public void refresh(@NotNull List<Playable> tracks) { super.refresh(tracks); Collections.shuffle(mTracks); } }