Various fixes and improvements

This commit is contained in:
Karim Abou Zeid 2015-08-03 20:42:16 +02:00
commit 6b68c17ae2
26 changed files with 142 additions and 121 deletions

View file

@ -105,7 +105,8 @@ public class PlayingNotificationHelper {
}
private PendingIntent getOpenMusicControllerPendingIntent() {
return PendingIntent.getActivity(service, 0, new Intent(service, MainActivity.class), 0);
Intent intent = new Intent(service, MainActivity.class);
return PendingIntent.getActivity(service, 0, intent, 0);
}
private void setUpExpandedPlaybackActions() {