summaryrefslogtreecommitdiff
path: root/src/com/android
diff options
context:
space:
mode:
authorSelim Cinek <cinek@google.com>2014-08-27 17:52:23 +0200
committerSelim Cinek <cinek@google.com>2014-08-27 17:52:23 +0200
commit62eb3fe77c437ecab6babe8e9aa2d94c5d604c2d (patch)
tree2d61b8a3709f8b14c34bd6fce34ab1de65366f9b /src/com/android
parent4f002af6c7b28945e93c93d5cae6bee979a3f371 (diff)
downloadStk-62eb3fe77c437ecab6babe8e9aa2d94c5d604c2d.tar.gz
Colored notifications
Bug: 17128331 Change-Id: Icf1f7f980602a8056b9b61b7be33ce138fb882f1
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/stk/StkAppService.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/stk/StkAppService.java b/src/com/android/stk/StkAppService.java
index 4699e04..24d5b89 100644
--- a/src/com/android/stk/StkAppService.java
+++ b/src/com/android/stk/StkAppService.java
@@ -840,7 +840,8 @@ public class StkAppService extends Service implements Runnable {
com.android.internal.R.drawable.stat_notify_sim_toolkit);
notificationBuilder.setLargeIcon(bitmapIcon);
}
-
+ notificationBuilder.setColor(mContext.getResources().getColor(
+ com.android.internal.R.color.system_notification_accent_color));
mNotificationManager.notify(STK_NOTIFICATION_ID, notificationBuilder.build());
}
}