summaryrefslogtreecommitdiff
path: root/navit/android/src/org/navitproject/navit/Navit.java
diff options
context:
space:
mode:
authormvglasow <michael -at- vonglasow.com>2015-11-09 21:50:38 +0100
committermvglasow <michael -at- vonglasow.com>2016-02-02 09:58:31 +0100
commit402a55ba4041087017611bc03e4ee21cb5e78ff7 (patch)
tree48af7f3219c5cbf834f06c8b55db3480261a10da /navit/android/src/org/navitproject/navit/Navit.java
parent2aa0177017e346ca1e2b96a8c191bb57078c99a2 (diff)
downloadnavit-402a55ba4041087017611bc03e4ee21cb5e78ff7.tar.gz
Add:port_android:Notification icon which complies with Android style guide for all densities
Signed-off-by: mvglasow <michael -at- vonglasow.com>
Diffstat (limited to 'navit/android/src/org/navitproject/navit/Navit.java')
-rw-r--r--navit/android/src/org/navitproject/navit/Navit.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/android/src/org/navitproject/navit/Navit.java b/navit/android/src/org/navitproject/navit/Navit.java
index a117ccd6d..19637c97b 100644
--- a/navit/android/src/org/navitproject/navit/Navit.java
+++ b/navit/android/src/org/navitproject/navit/Navit.java
@@ -267,7 +267,7 @@ public class Navit extends Activity
// Setup the status bar notification
// This notification is removed in the exit() function
NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); // Grab a handle to the NotificationManager
- Notification NavitNotification = new Notification(R.drawable.icon, getString(R.string.notification_ticker), System.currentTimeMillis()); // Create a new notification, with the text string to show when the notification first appears
+ Notification NavitNotification = new Notification(R.drawable.ic_notify, getString(R.string.notification_ticker), System.currentTimeMillis()); // Create a new notification, with the text string to show when the notification first appears
PendingIntent appIntent = PendingIntent.getActivity(getApplicationContext(), 0, getIntent(), 0);
NavitNotification.setLatestEventInfo(getApplicationContext(), "Navit", getString(R.string.notification_event_default), appIntent); // Set the text in the notification
NavitNotification.flags|=Notification.FLAG_ONGOING_EVENT; // Ensure that the notification appears in Ongoing