diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-08-20 18:47:11 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-08-20 18:47:11 -0700 |
commit | bcdffe228d85226febed393ce8d5d4e08ba53ca8 (patch) | |
tree | 1b17cb868f3686932e5847ba0bd5b571afa32ce4 | |
parent | bc8c077fb39ce9404fb0d8cf64c54e6f01f126a1 (diff) | |
download | dsub-bcdffe228d85226febed393ce8d5d4e08ba53ca8.tar.gz dsub-bcdffe228d85226febed393ce8d5d4e08ba53ca8.tar.bz2 dsub-bcdffe228d85226febed393ce8d5d4e08ba53ca8.zip |
Use app icon for now playing notification
-rw-r--r-- | src/github/daneren2005/dsub/util/Util.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/util/Util.java b/src/github/daneren2005/dsub/util/Util.java index a22c28b0..e27be86e 100644 --- a/src/github/daneren2005/dsub/util/Util.java +++ b/src/github/daneren2005/dsub/util/Util.java @@ -819,7 +819,7 @@ public final class Util { public static void showPlayingNotification(final Context context, final DownloadServiceImpl downloadService, Handler handler, MusicDirectory.Entry song) { // Set the icon, scrolling text and timestamp - final Notification notification = new Notification(R.drawable.stat_notify_playing, song.getTitle(), System.currentTimeMillis()); + final Notification notification = new Notification(R.drawable.launch, song.getTitle(), System.currentTimeMillis()); notification.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT; boolean playing = downloadService.getPlayerState() == PlayerState.STARTED; |