Ejemplo n.º 1
0
 /*
  * Returns true if a file is currently opened for playback (regardless
  * of whether it's playing or paused).
  */
 public static boolean isMusicLoaded() {
   if (MusicUtils.sService != null) {
     try {
       return sService.getPath() != null;
     } catch (RemoteException ex) {
     }
   }
   return false;
 }