diff --git a/core/res/res/drawable-hdpi/stat_sys_throttle_warning.png b/core/res/res/drawable-hdpi/stat_sys_throttle_warning.png deleted file mode 100644 index c42b00c495f69..0000000000000 Binary files a/core/res/res/drawable-hdpi/stat_sys_throttle_warning.png and /dev/null differ diff --git a/core/res/res/drawable-hdpi/stat_sys_throttled.png b/core/res/res/drawable-hdpi/stat_sys_throttled.png index e43fbaee4caf0..33c05211e9fd2 100644 Binary files a/core/res/res/drawable-hdpi/stat_sys_throttled.png and b/core/res/res/drawable-hdpi/stat_sys_throttled.png differ diff --git a/core/res/res/drawable-mdpi/stat_sys_throttle_warning.png b/core/res/res/drawable-mdpi/stat_sys_throttle_warning.png deleted file mode 100644 index 368880328e2c8..0000000000000 Binary files a/core/res/res/drawable-mdpi/stat_sys_throttle_warning.png and /dev/null differ diff --git a/core/res/res/drawable-mdpi/stat_sys_throttled.png b/core/res/res/drawable-mdpi/stat_sys_throttled.png index efb64ad7b849d..97ac427b20b6d 100644 Binary files a/core/res/res/drawable-mdpi/stat_sys_throttled.png and b/core/res/res/drawable-mdpi/stat_sys_throttled.png differ diff --git a/services/java/com/android/server/ThrottleService.java b/services/java/com/android/server/ThrottleService.java index 16fd104debc7a..9333dd828892e 100644 --- a/services/java/com/android/server/ThrottleService.java +++ b/services/java/com/android/server/ThrottleService.java @@ -425,7 +425,7 @@ public class ThrottleService extends IThrottleManager.Stub { } mNotificationManager.cancel(com.android.internal.R.drawable. - stat_sys_throttle_warning); + stat_sys_throttled); postNotification(com.android.internal.R.string.throttled_notification_title, com.android.internal.R.string.throttled_notification_message, @@ -460,18 +460,18 @@ public class ThrottleService extends IThrottleManager.Stub { if (mWarningNotificationSent == false) { mWarningNotificationSent = true; mNotificationManager.cancel(com.android.internal.R.drawable. - stat_sys_throttle_warning); + stat_sys_throttled); postNotification(com.android.internal.R.string. throttle_warning_notification_title, com.android.internal.R.string. throttle_warning_notification_message, - com.android.internal.R.drawable.stat_sys_throttle_warning, + com.android.internal.R.drawable.stat_sys_throttled, 0); } } else { if (mWarningNotificationSent == true) { mNotificationManager.cancel(com.android.internal.R.drawable. - stat_sys_throttle_warning); + stat_sys_throttled); mWarningNotificationSent =false; } } @@ -519,7 +519,6 @@ public class ThrottleService extends IThrottleManager.Stub { broadcast.putExtra(ThrottleManager.EXTRA_THROTTLE_LEVEL, -1); mContext.sendStickyBroadcast(broadcast); } - mNotificationManager.cancel(com.android.internal.R.drawable.stat_sys_throttle_warning); mNotificationManager.cancel(com.android.internal.R.drawable.stat_sys_throttled); mWarningNotificationSent = false; }