Amend last commit. (Reorganized and cleaned up the playback service a bit. Added the ability to fade a song in/out on play/pause.)

This commit is contained in:
Karim Abou Zeid 2015-06-14 17:30:56 +02:00
commit 0aedfe1293
3 changed files with 42 additions and 79 deletions

View file

@ -76,7 +76,7 @@ public class MusicPlayerRemote {
public static void pauseSong() {
if (musicService != null) {
musicService.pausePlaying();
musicService.pausePlaying(false);
}
}
@ -104,7 +104,7 @@ public class MusicPlayerRemote {
public static void resumePlaying() {
if (musicService != null) {
musicService.resumePlaying();
musicService.resumePlaying(false);
}
}