Great progress with the new now playing screen. Almost done now.

This commit is contained in:
Karim Abou Zeid 2015-12-12 01:16:48 +01:00
commit 0de4590a87
32 changed files with 261 additions and 103 deletions

View file

@ -628,6 +628,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
}
public void moveSong(int from, int to) {
if (from == to) return;
final int currentPosition = getPosition();
Song songToMove = playingQueue.remove(from);
playingQueue.add(to, songToMove);