aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-08-20 18:47:11 -0700
committerScott Jackson <daneren2005@gmail.com>2013-08-20 18:47:11 -0700
commitbcdffe228d85226febed393ce8d5d4e08ba53ca8 (patch)
tree1b17cb868f3686932e5847ba0bd5b571afa32ce4
parentbc8c077fb39ce9404fb0d8cf64c54e6f01f126a1 (diff)
downloaddsub-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.java2
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;