Add buffering indicator
This commit is contained in:
parent
12443be2ce
commit
f668e51ba3
7 changed files with 43 additions and 30 deletions
|
|
@ -136,6 +136,10 @@ public class MusicPlayerRemote {
|
|||
return musicService != null && musicService.isPlaying();
|
||||
}
|
||||
|
||||
public static boolean isBuffering() {
|
||||
return musicService != null && musicService.isBuffering();
|
||||
}
|
||||
|
||||
public static void resumePlaying() {
|
||||
if (musicService != null) {
|
||||
musicService.play();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue