diff options
| -rw-r--r-- | packages/SystemUI/res/drawable-hdpi/stat_notify_image.png | bin | 0 -> 717 bytes | |||
| -rw-r--r-- | packages/SystemUI/res/drawable-hdpi/stat_notify_image_error.png | bin | 0 -> 969 bytes | |||
| -rw-r--r-- | packages/SystemUI/res/drawable-mdpi/stat_notify_image.png | bin | 0 -> 614 bytes | |||
| -rw-r--r-- | packages/SystemUI/res/drawable-mdpi/stat_notify_image_error.png | bin | 0 -> 726 bytes | |||
| -rw-r--r-- | packages/SystemUI/res/drawable-xhdpi/stat_notify_image.png | bin | 0 -> 847 bytes | |||
| -rw-r--r-- | packages/SystemUI/res/drawable-xhdpi/stat_notify_image_error.png | bin | 0 -> 1248 bytes | |||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java | 4 |
7 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/res/drawable-hdpi/stat_notify_image.png b/packages/SystemUI/res/drawable-hdpi/stat_notify_image.png Binary files differnew file mode 100644 index 000000000000..319f925b7342 --- /dev/null +++ b/packages/SystemUI/res/drawable-hdpi/stat_notify_image.png diff --git a/packages/SystemUI/res/drawable-hdpi/stat_notify_image_error.png b/packages/SystemUI/res/drawable-hdpi/stat_notify_image_error.png Binary files differnew file mode 100644 index 000000000000..fa8d4bfc0512 --- /dev/null +++ b/packages/SystemUI/res/drawable-hdpi/stat_notify_image_error.png diff --git a/packages/SystemUI/res/drawable-mdpi/stat_notify_image.png b/packages/SystemUI/res/drawable-mdpi/stat_notify_image.png Binary files differnew file mode 100644 index 000000000000..5036e8ddc93f --- /dev/null +++ b/packages/SystemUI/res/drawable-mdpi/stat_notify_image.png diff --git a/packages/SystemUI/res/drawable-mdpi/stat_notify_image_error.png b/packages/SystemUI/res/drawable-mdpi/stat_notify_image_error.png Binary files differnew file mode 100644 index 000000000000..94487bf3eefa --- /dev/null +++ b/packages/SystemUI/res/drawable-mdpi/stat_notify_image_error.png diff --git a/packages/SystemUI/res/drawable-xhdpi/stat_notify_image.png b/packages/SystemUI/res/drawable-xhdpi/stat_notify_image.png Binary files differnew file mode 100644 index 000000000000..3c5c0821f53a --- /dev/null +++ b/packages/SystemUI/res/drawable-xhdpi/stat_notify_image.png diff --git a/packages/SystemUI/res/drawable-xhdpi/stat_notify_image_error.png b/packages/SystemUI/res/drawable-xhdpi/stat_notify_image_error.png Binary files differnew file mode 100644 index 000000000000..8aa19e44b50d --- /dev/null +++ b/packages/SystemUI/res/drawable-xhdpi/stat_notify_image_error.png diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java b/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java index 301ae73b11fc..cc1b8ed12c91 100644 --- a/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java +++ b/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java @@ -137,7 +137,7 @@ class SaveImageInBackgroundTask extends AsyncTask<SaveImageInBackgroundData, Voi + (mTickerAddSpace ? " " : "")) .setContentTitle(r.getString(R.string.screenshot_saving_title)) .setContentText(r.getString(R.string.screenshot_saving_text)) - .setSmallIcon(android.R.drawable.ic_menu_gallery) + .setSmallIcon(R.drawable.stat_notify_image) .setWhen(System.currentTimeMillis()); Notification n = mNotificationBuilder.getNotification(); n.flags |= Notification.FLAG_NO_CLEAR; @@ -544,7 +544,7 @@ class GlobalScreenshot { .setTicker(r.getString(R.string.screenshot_failed_title)) .setContentTitle(r.getString(R.string.screenshot_failed_title)) .setContentText(r.getString(R.string.screenshot_failed_text)) - .setSmallIcon(android.R.drawable.ic_menu_report_image) + .setSmallIcon(R.drawable.stat_notify_image_error) .setWhen(System.currentTimeMillis()) .setAutoCancel(true) .getNotification(); |