diff options
| author | John Spurlock <jspurlock@google.com> | 2013-06-10 11:45:17 -0400 |
|---|---|---|
| committer | John Spurlock <jspurlock@google.com> | 2013-06-10 11:45:17 -0400 |
| commit | bf563368e1d59610034afcaed061b7a8a851d84c (patch) | |
| tree | d7a970a2b28339e1c07bcbac8580c8612ce92a92 /core/java | |
| parent | 56cd646abeae51e806791f82ab0995fe047b1fe4 (diff) | |
Save Notification large icon to extras.
This piece of semantic info was defined, cleared properly on
lightenPayload, but never saved.
Change-Id: Ib2c5372a57d2a01617e401231c150260d22b05d6
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/app/Notification.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index fb28ae3d6e45..b66e95bbf1f4 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1719,6 +1719,9 @@ public class Notification implements Parcelable extras.putBoolean(EXTRA_PROGRESS_INDETERMINATE, mProgressIndeterminate); extras.putBoolean(EXTRA_SHOW_CHRONOMETER, mUseChronometer); extras.putBoolean(EXTRA_SHOW_WHEN, mShowWhen); + if (mLargeIcon != null) { + extras.putParcelable(EXTRA_LARGE_ICON, mLargeIcon); + } } /** |
