Skip to content

Commit b787a75

Browse files
author
Winson Chung
committed
Updating the screenshot notification icons.
Change-Id: If4c4632e73445d69f13805b6e472a167a85d6601
1 parent d47d4f7 commit b787a75

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed
717 Bytes
Loading
969 Bytes
Loading
614 Bytes
Loading
726 Bytes
Loading
847 Bytes
Loading
1.22 KB
Loading

packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class SaveImageInBackgroundTask extends AsyncTask<SaveImageInBackgroundData, Voi
137137
+ (mTickerAddSpace ? " " : ""))
138138
.setContentTitle(r.getString(R.string.screenshot_saving_title))
139139
.setContentText(r.getString(R.string.screenshot_saving_text))
140-
.setSmallIcon(android.R.drawable.ic_menu_gallery)
140+
.setSmallIcon(R.drawable.stat_notify_image)
141141
.setWhen(System.currentTimeMillis());
142142
Notification n = mNotificationBuilder.getNotification();
143143
n.flags |= Notification.FLAG_NO_CLEAR;
@@ -544,7 +544,7 @@ static void notifyScreenshotError(Context context, NotificationManager nManager)
544544
.setTicker(r.getString(R.string.screenshot_failed_title))
545545
.setContentTitle(r.getString(R.string.screenshot_failed_title))
546546
.setContentText(r.getString(R.string.screenshot_failed_text))
547-
.setSmallIcon(android.R.drawable.ic_menu_report_image)
547+
.setSmallIcon(R.drawable.stat_notify_image_error)
548548
.setWhen(System.currentTimeMillis())
549549
.setAutoCancel(true)
550550
.getNotification();

0 commit comments

Comments
 (0)