-
Notifications
You must be signed in to change notification settings - Fork 44
Looping Repeat mode
koca2000 edited this page Jan 21, 2019
·
1 revision
Version 1.2.5 introduced RepeatMode enum.
sp.setRepeatMode(RepeatMode.NO); // won't repeat/loop songs
sp.setRepeatMode(RepeatMode.ONE); // will repeat only actual song
sp.setRepeatMode(RepeatMode.ALL); // will repeat whole playlist
sp.setLoop(true) // where sp is your SongPlayer
You had to make new instance of SongPlayer.