diff options
author | Dan Sandler <dsandler@android.com> | 2015-05-06 15:18:49 -0400 |
---|---|---|
committer | Dan Sandler <dsandler@android.com> | 2015-05-13 23:50:43 -0400 |
commit | 08a04c15245c970856022d0779aa27d4d63cdee3 (patch) | |
tree | b2f405077560e5200fc2d55ae5f37eaf22f616ee /packages/SystemUI/src/com/android/systemui/screenshot | |
parent | a22a380fbbe224783d8b82440ca8692b0ff5b0a2 (diff) | |
download | frameworks_base-08a04c15245c970856022d0779aa27d4d63cdee3.zip frameworks_base-08a04c15245c970856022d0779aa27d4d63cdee3.tar.gz frameworks_base-08a04c15245c970856022d0779aa27d4d63cdee3.tar.bz2 |
Icon support comes to Notification.
And you may ask yourself: what is that beautiful icon?
And you may ask yourself: where does that API go to?
And you may ask yourself: is it a resource? is it a Bitmap?
And you may say to yourself: my god, what have I done
Bug: 18568715
Change-Id: I4377b311c538bd1cf36b3fba22326bae81af40c9
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/screenshot')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java b/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java index 715f4e4..be33085 100644 --- a/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java +++ b/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java @@ -194,7 +194,7 @@ class SaveImageInBackgroundTask extends AsyncTask<SaveImageInBackgroundData, Voi // we compose the final post-save notification below. mNotificationBuilder.setLargeIcon(croppedIcon); // But we still don't set it for the expanded view, allowing the smallIcon to show here. - mNotificationStyle.bigLargeIcon(null); + mNotificationStyle.bigLargeIcon((Bitmap) null); } @Override |