/** {@inheritDoc} */
 @Override
 protected void onPause() {
   super.onPause();
   if (MusicUtils.isPlaying() && ApolloUtils.isApplicationSentToBackground(this)) {
     MusicUtils.startBackgroundService(this);
   }
 }
예제 #2
0
 @Override
 protected void onPause() {
   PlaybackService.pause(false);
   super.onPause();
 }