From 255dd04271088590fedc46c8e22b2fd4ab142d39 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Tue, 19 Aug 2014 22:29:02 +0200 Subject: Added notification color to all system notifications Bug: 17128331 Change-Id: I81a94510ef51b99916f314c0dd65852426a1fbeb --- .../src/com/android/shell/BugreportReceiver.java | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'packages/Shell/src/com/android/shell') diff --git a/packages/Shell/src/com/android/shell/BugreportReceiver.java b/packages/Shell/src/com/android/shell/BugreportReceiver.java index 7a659ee..02a3aeb 100644 --- a/packages/Shell/src/com/android/shell/BugreportReceiver.java +++ b/packages/Shell/src/com/android/shell/BugreportReceiver.java @@ -84,14 +84,17 @@ public class BugreportReceiver extends BroadcastReceiver { } notifIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); - final Notification.Builder builder = new Notification.Builder(context); - builder.setSmallIcon(com.android.internal.R.drawable.stat_sys_adb); - builder.setContentTitle(context.getString(R.string.bugreport_finished_title)); - builder.setTicker(context.getString(R.string.bugreport_finished_title)); - builder.setContentText(context.getString(R.string.bugreport_finished_text)); - builder.setContentIntent(PendingIntent.getActivity( - context, 0, notifIntent, PendingIntent.FLAG_CANCEL_CURRENT)); - builder.setAutoCancel(true); + final Notification.Builder builder = new Notification.Builder(context) + .setSmallIcon(com.android.internal.R.drawable.stat_sys_adb) + .setContentTitle(context.getString(R.string.bugreport_finished_title)) + .setTicker(context.getString(R.string.bugreport_finished_title)) + .setContentText(context.getString(R.string.bugreport_finished_text)) + .setContentIntent(PendingIntent.getActivity( + context, 0, notifIntent, PendingIntent.FLAG_CANCEL_CURRENT)) + .setAutoCancel(true) + .setColor(context.getResources().getColor( + com.android.internal.R.color.system_notification_accent_color)); + NotificationManager.from(context).notify(TAG, 0, builder.build()); // Clean up older bugreports in background -- cgit v1.1