Fix notification bitmap and progressbar

This commit is contained in:
CappielloAntonio 2021-04-12 10:35:41 +02:00
parent b1fca633a6
commit 54bc709317
10 changed files with 247 additions and 228 deletions

View file

@ -138,6 +138,10 @@ public class MusicPlayerRemote {
return musicService != null && musicService.isPlaying();
}
public static boolean isLoading() {
return musicService != null && musicService.isLoading();
}
public static void resumePlaying() {
if (musicService != null) {
musicService.play();