mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
Quit service when bottom_sheet_header is dragged down
This commit is contained in:
parent
12b23ab3c2
commit
5e6d28ece3
3 changed files with 11 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue