Skip to content

Looping Repeat mode

koca2000 edited this page Jan 21, 2019 · 1 revision

Since 1.2.5

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

Since 1.2.1

sp.setLoop(true) // where sp is your SongPlayer

Before 1.2.1

You had to make new instance of SongPlayer.