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:
parent
5c69ca132f
commit
0aedfe1293
3 changed files with 42 additions and 79 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue