diff options
author | Riley Andrews <riandrews@google.com> | 2015-11-03 23:36:52 -0800 |
---|---|---|
committer | The Android Automerger <android-build@google.com> | 2015-11-04 13:00:18 -0800 |
commit | b38fcc375ce2d13b3e378b21673b6cd5b273e100 (patch) | |
tree | 2f9973749d5641d5a5f5efaef3ec7bce4ec71df5 | |
parent | b38c1e8cfd27feb4dd17dfcb9b927777d2bf3024 (diff) | |
download | frameworks_base-b38fcc375ce2d13b3e378b21673b6cd5b273e100.zip frameworks_base-b38fcc375ce2d13b3e378b21673b6cd5b273e100.tar.gz frameworks_base-b38fcc375ce2d13b3e378b21673b6cd5b273e100.tar.bz2 |
Convert ashmem bitmap thresholds to constants.
Bug 25256717
Change-Id: I23e2795ef8798d83bf60dcbd6ff2e7093fcaa9b0
Signed-off-by: Riley Andrews <riandrews@google.com>
-rw-r--r-- | core/java/android/app/Notification.java | 5 | ||||
-rw-r--r-- | graphics/java/android/graphics/drawable/Icon.java | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index a2e8fd1..6a4f6a1 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -3963,6 +3963,9 @@ public class Notification implements Parcelable return this; } + /** @hide */ + public static final int MIN_ASHMEM_BITMAP_SIZE = 128 * (1 << 10); + /** * @hide */ @@ -3971,7 +3974,7 @@ public class Notification implements Parcelable super.purgeResources(); if (mPicture != null && mPicture.isMutable() && - mPicture.getAllocationByteCount() >= (128 * (1 << 10))) { + mPicture.getAllocationByteCount() >= MIN_ASHMEM_BITMAP_SIZE) { mPicture = mPicture.createAshmemBitmap(); } if (mBigLargeIcon != null) { diff --git a/graphics/java/android/graphics/drawable/Icon.java b/graphics/java/android/graphics/drawable/Icon.java index 44d7530..d800acb 100644 --- a/graphics/java/android/graphics/drawable/Icon.java +++ b/graphics/java/android/graphics/drawable/Icon.java @@ -377,6 +377,9 @@ public final class Icon implements Parcelable { return loadDrawable(context); } + /** @hide */ + public static final int MIN_ASHMEM_ICON_SIZE = 128 * (1 << 10); + /** * Puts the memory used by this instance into Ashmem memory, if possible. * @hide @@ -384,7 +387,7 @@ public final class Icon implements Parcelable { public void convertToAshmem() { if (mType == TYPE_BITMAP && getBitmap().isMutable() && - getBitmap().getAllocationByteCount() >= (128 * (1 << 10))) { + getBitmap().getAllocationByteCount() >= MIN_ASHMEM_ICON_SIZE) { setBitmap(getBitmap().createAshmemBitmap()); } } |