Quit service when bottom_sheet_header is dragged down

This commit is contained in:
CappielloAntonio 2021-04-15 09:49:04 +02:00
parent 12b23ab3c2
commit 5e6d28ece3
3 changed files with 11 additions and 0 deletions

View file

@ -142,6 +142,12 @@ public class MusicPlayerRemote {
return musicService != null && musicService.isLoading();
}
public static void quitPlaying() {
if (musicService != null) {
musicService.quitPlaying();
}
}
public static void resumePlaying() {
if (musicService != null) {
musicService.play();