The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 19 | import static com.android.launcher3.anim.Interpolators.ACCEL; |
| 20 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 21 | import android.animation.ObjectAnimator; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 22 | import android.graphics.Bitmap; |
| 23 | import android.graphics.Canvas; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 24 | import android.graphics.Color; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 25 | import android.graphics.ColorFilter; |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 26 | import android.graphics.ColorMatrix; |
| 27 | import android.graphics.ColorMatrixColorFilter; |
Winson Chung | 45e1d6e | 2010-11-09 17:19:49 -0800 | [diff] [blame] | 28 | import android.graphics.Paint; |
| 29 | import android.graphics.PixelFormat; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 30 | import android.graphics.PorterDuff; |
| 31 | import android.graphics.PorterDuffColorFilter; |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 32 | import android.graphics.Rect; |
Winson Chung | 45e1d6e | 2010-11-09 17:19:49 -0800 | [diff] [blame] | 33 | import android.graphics.drawable.Drawable; |
Tony Wickham | 1e61849 | 2017-02-02 12:57:18 -0800 | [diff] [blame] | 34 | import android.util.Property; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 35 | import android.util.SparseArray; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 36 | |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 37 | import com.android.launcher3.graphics.BitmapInfo; |
Tony Wickham | 9a8d11f | 2017-01-11 09:53:12 -0800 | [diff] [blame] | 38 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 39 | public class FastBitmapDrawable extends Drawable { |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 40 | |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 41 | private static final float PRESSED_SCALE = 1.1f; |
| 42 | |
Tony Wickham | 6b910a2 | 2016-11-08 10:40:34 -0800 | [diff] [blame] | 43 | private static final float DISABLED_DESATURATION = 1f; |
| 44 | private static final float DISABLED_BRIGHTNESS = 0.5f; |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 45 | |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 46 | public static final int CLICK_FEEDBACK_DURATION = 200; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 47 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 48 | // Since we don't need 256^2 values for combinations of both the brightness and saturation, we |
| 49 | // reduce the value space to a smaller value V, which reduces the number of cached |
| 50 | // ColorMatrixColorFilters that we need to keep to V^2 |
| 51 | private static final int REDUCED_FILTER_VALUE_SPACE = 48; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 52 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 53 | // A cache of ColorFilters for optimizing brightness and saturation animations |
| 54 | private static final SparseArray<ColorFilter> sCachedFilter = new SparseArray<>(); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 55 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 56 | // Temporary matrices used for calculation |
| 57 | private static final ColorMatrix sTempBrightnessMatrix = new ColorMatrix(); |
| 58 | private static final ColorMatrix sTempFilterMatrix = new ColorMatrix(); |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 59 | |
Sunny Goyal | 55cb70b | 2016-11-12 09:58:29 -0800 | [diff] [blame] | 60 | protected final Paint mPaint = new Paint(Paint.FILTER_BITMAP_FLAG | Paint.ANTI_ALIAS_FLAG); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 61 | private final Bitmap mBitmap; |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 62 | protected final int mIconColor; |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 63 | |
| 64 | private boolean mIsPressed; |
Tony Wickham | 6b910a2 | 2016-11-08 10:40:34 -0800 | [diff] [blame] | 65 | private boolean mIsDisabled; |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 66 | |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 67 | // Animator and properties for the fast bitmap drawable's scale |
| 68 | private static final Property<FastBitmapDrawable, Float> SCALE |
| 69 | = new Property<FastBitmapDrawable, Float>(Float.TYPE, "scale") { |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 70 | @Override |
| 71 | public Float get(FastBitmapDrawable fastBitmapDrawable) { |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 72 | return fastBitmapDrawable.mScale; |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | @Override |
| 76 | public void set(FastBitmapDrawable fastBitmapDrawable, Float value) { |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 77 | fastBitmapDrawable.mScale = value; |
| 78 | fastBitmapDrawable.invalidateSelf(); |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 79 | } |
| 80 | }; |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 81 | private ObjectAnimator mScaleAnimation; |
| 82 | private float mScale = 1; |
| 83 | |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 84 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 85 | // The saturation and brightness are values that are mapped to REDUCED_FILTER_VALUE_SPACE and |
| 86 | // as a result, can be used to compose the key for the cached ColorMatrixColorFilters |
| 87 | private int mDesaturation = 0; |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 88 | private int mBrightness = 0; |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 89 | private int mAlpha = 255; |
| 90 | private int mPrevUpdateKey = Integer.MAX_VALUE; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 91 | |
Hyunyoung Song | 3f47144 | 2015-04-08 19:01:34 -0700 | [diff] [blame] | 92 | public FastBitmapDrawable(Bitmap b) { |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 93 | this(b, Color.TRANSPARENT); |
| 94 | } |
| 95 | |
| 96 | public FastBitmapDrawable(BitmapInfo info) { |
| 97 | this(info.icon, info.color); |
| 98 | } |
| 99 | |
| 100 | public FastBitmapDrawable(ItemInfoWithIcon info) { |
| 101 | this(info.iconBitmap, info.iconColor); |
| 102 | } |
| 103 | |
| 104 | protected FastBitmapDrawable(Bitmap b, int iconColor) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 105 | mBitmap = b; |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 106 | mIconColor = iconColor; |
Sunny Goyal | 96ac68a | 2017-02-02 16:37:21 -0800 | [diff] [blame] | 107 | setFilterBitmap(true); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | @Override |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 111 | public final void draw(Canvas canvas) { |
| 112 | if (mScaleAnimation != null) { |
| 113 | int count = canvas.save(); |
| 114 | Rect bounds = getBounds(); |
| 115 | canvas.scale(mScale, mScale, bounds.exactCenterX(), bounds.exactCenterY()); |
| 116 | drawInternal(canvas, bounds); |
| 117 | canvas.restoreToCount(count); |
| 118 | } else { |
| 119 | drawInternal(canvas, getBounds()); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | protected void drawInternal(Canvas canvas, Rect bounds) { |
| 124 | canvas.drawBitmap(mBitmap, null, bounds, mPaint); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | @Override |
Adam Cohen | badf71e | 2011-05-26 19:08:29 -0700 | [diff] [blame] | 128 | public void setColorFilter(ColorFilter cf) { |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 129 | // No op |
Adam Cohen | badf71e | 2011-05-26 19:08:29 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 133 | public int getOpacity() { |
| 134 | return PixelFormat.TRANSLUCENT; |
| 135 | } |
| 136 | |
| 137 | @Override |
| 138 | public void setAlpha(int alpha) { |
Winson Chung | 29d6fea | 2010-12-01 15:47:31 -0800 | [diff] [blame] | 139 | mAlpha = alpha; |
Winson Chung | b3347bb | 2010-08-19 14:51:28 -0700 | [diff] [blame] | 140 | mPaint.setAlpha(alpha); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 141 | } |
| 142 | |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 143 | @Override |
Adam Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 144 | public void setFilterBitmap(boolean filterBitmap) { |
| 145 | mPaint.setFilterBitmap(filterBitmap); |
Winson Chung | 6e1c0d3 | 2013-10-25 15:24:24 -0700 | [diff] [blame] | 146 | mPaint.setAntiAlias(filterBitmap); |
Adam Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Winson Chung | 29d6fea | 2010-12-01 15:47:31 -0800 | [diff] [blame] | 149 | public int getAlpha() { |
| 150 | return mAlpha; |
| 151 | } |
| 152 | |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 153 | public float getAnimatedScale() { |
| 154 | return mScaleAnimation == null ? 1 : mScale; |
| 155 | } |
| 156 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 157 | @Override |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 158 | public int getIntrinsicWidth() { |
Sunny Goyal | c424f22 | 2014-09-05 07:04:59 -0700 | [diff] [blame] | 159 | return mBitmap.getWidth(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | @Override |
| 163 | public int getIntrinsicHeight() { |
Sunny Goyal | c424f22 | 2014-09-05 07:04:59 -0700 | [diff] [blame] | 164 | return mBitmap.getHeight(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | @Override |
| 168 | public int getMinimumWidth() { |
Winson Chung | eeb5bbc | 2013-11-13 15:47:05 -0800 | [diff] [blame] | 169 | return getBounds().width(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | @Override |
| 173 | public int getMinimumHeight() { |
Winson Chung | eeb5bbc | 2013-11-13 15:47:05 -0800 | [diff] [blame] | 174 | return getBounds().height(); |
Joe Onorato | 0589f0f | 2010-02-08 13:44:00 -0800 | [diff] [blame] | 175 | } |
| 176 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 177 | public Bitmap getBitmap() { |
| 178 | return mBitmap; |
| 179 | } |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 180 | |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 181 | @Override |
| 182 | public boolean isStateful() { |
| 183 | return true; |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 186 | @Override |
Sunny Goyal | 2814112 | 2017-06-21 17:28:23 -0700 | [diff] [blame] | 187 | public ColorFilter getColorFilter() { |
| 188 | return mPaint.getColorFilter(); |
| 189 | } |
| 190 | |
| 191 | @Override |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 192 | protected boolean onStateChange(int[] state) { |
| 193 | boolean isPressed = false; |
| 194 | for (int s : state) { |
| 195 | if (s == android.R.attr.state_pressed) { |
| 196 | isPressed = true; |
| 197 | break; |
| 198 | } |
| 199 | } |
| 200 | if (mIsPressed != isPressed) { |
| 201 | mIsPressed = isPressed; |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 202 | |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 203 | if (mScaleAnimation != null) { |
| 204 | mScaleAnimation.cancel(); |
| 205 | mScaleAnimation = null; |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 206 | } |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 207 | |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 208 | if (mIsPressed) { |
| 209 | // Animate when going to pressed state |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 210 | mScaleAnimation = ObjectAnimator.ofFloat(this, SCALE, PRESSED_SCALE); |
| 211 | mScaleAnimation.setDuration(CLICK_FEEDBACK_DURATION); |
| 212 | mScaleAnimation.setInterpolator(ACCEL); |
| 213 | mScaleAnimation.start(); |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 214 | } else { |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 215 | mScale = 1f; |
| 216 | invalidateSelf(); |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 217 | } |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 218 | return true; |
| 219 | } |
| 220 | return false; |
| 221 | } |
| 222 | |
Tony Wickham | 6b910a2 | 2016-11-08 10:40:34 -0800 | [diff] [blame] | 223 | private void invalidateDesaturationAndBrightness() { |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 224 | setDesaturation(mIsDisabled ? DISABLED_DESATURATION : 0); |
Sunny Goyal | 726bee7 | 2018-03-05 12:54:24 -0800 | [diff] [blame] | 225 | setBrightness(mIsDisabled ? DISABLED_BRIGHTNESS : 0); |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Tony Wickham | 6b910a2 | 2016-11-08 10:40:34 -0800 | [diff] [blame] | 228 | public void setIsDisabled(boolean isDisabled) { |
| 229 | if (mIsDisabled != isDisabled) { |
| 230 | mIsDisabled = isDisabled; |
| 231 | invalidateDesaturationAndBrightness(); |
| 232 | } |
| 233 | } |
| 234 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 235 | /** |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 236 | * Sets the saturation of this icon, 0 [full color] -> 1 [desaturated] |
| 237 | */ |
Sunny Goyal | 55cb70b | 2016-11-12 09:58:29 -0800 | [diff] [blame] | 238 | private void setDesaturation(float desaturation) { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 239 | int newDesaturation = (int) Math.floor(desaturation * REDUCED_FILTER_VALUE_SPACE); |
| 240 | if (mDesaturation != newDesaturation) { |
| 241 | mDesaturation = newDesaturation; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 242 | updateFilter(); |
| 243 | } |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 246 | public float getDesaturation() { |
| 247 | return (float) mDesaturation / REDUCED_FILTER_VALUE_SPACE; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 248 | } |
| 249 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 250 | /** |
| 251 | * Sets the brightness of this icon, 0 [no add. brightness] -> 1 [2bright2furious] |
| 252 | */ |
Sunny Goyal | 55cb70b | 2016-11-12 09:58:29 -0800 | [diff] [blame] | 253 | private void setBrightness(float brightness) { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 254 | int newBrightness = (int) Math.floor(brightness * REDUCED_FILTER_VALUE_SPACE); |
| 255 | if (mBrightness != newBrightness) { |
| 256 | mBrightness = newBrightness; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 257 | updateFilter(); |
| 258 | } |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Sunny Goyal | 55cb70b | 2016-11-12 09:58:29 -0800 | [diff] [blame] | 261 | private float getBrightness() { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 262 | return (float) mBrightness / REDUCED_FILTER_VALUE_SPACE; |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Updates the paint to reflect the current brightness and saturation. |
| 267 | */ |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 268 | private void updateFilter() { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 269 | boolean usePorterDuffFilter = false; |
| 270 | int key = -1; |
| 271 | if (mDesaturation > 0) { |
| 272 | key = (mDesaturation << 16) | mBrightness; |
| 273 | } else if (mBrightness > 0) { |
| 274 | // Compose a key with a fully saturated icon if we are just animating brightness |
| 275 | key = (1 << 16) | mBrightness; |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 276 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 277 | // We found that in L, ColorFilters cause drawing artifacts with shadows baked into |
| 278 | // icons, so just use a PorterDuff filter when we aren't animating saturation |
| 279 | usePorterDuffFilter = true; |
| 280 | } |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 281 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 282 | // Debounce multiple updates on the same frame |
| 283 | if (key == mPrevUpdateKey) { |
| 284 | return; |
| 285 | } |
| 286 | mPrevUpdateKey = key; |
| 287 | |
| 288 | if (key != -1) { |
| 289 | ColorFilter filter = sCachedFilter.get(key); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 290 | if (filter == null) { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 291 | float brightnessF = getBrightness(); |
| 292 | int brightnessI = (int) (255 * brightnessF); |
| 293 | if (usePorterDuffFilter) { |
| 294 | filter = new PorterDuffColorFilter(Color.argb(brightnessI, 255, 255, 255), |
| 295 | PorterDuff.Mode.SRC_ATOP); |
| 296 | } else { |
| 297 | float saturationF = 1f - getDesaturation(); |
| 298 | sTempFilterMatrix.setSaturation(saturationF); |
| 299 | if (mBrightness > 0) { |
| 300 | // Brightness: C-new = C-old*(1-amount) + amount |
| 301 | float scale = 1f - brightnessF; |
| 302 | float[] mat = sTempBrightnessMatrix.getArray(); |
| 303 | mat[0] = scale; |
| 304 | mat[6] = scale; |
| 305 | mat[12] = scale; |
| 306 | mat[4] = brightnessI; |
| 307 | mat[9] = brightnessI; |
| 308 | mat[14] = brightnessI; |
| 309 | sTempFilterMatrix.preConcat(sTempBrightnessMatrix); |
| 310 | } |
| 311 | filter = new ColorMatrixColorFilter(sTempFilterMatrix); |
| 312 | } |
| 313 | sCachedFilter.append(key, filter); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 314 | } |
| 315 | mPaint.setColorFilter(filter); |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 316 | } else { |
| 317 | mPaint.setColorFilter(null); |
| 318 | } |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 319 | invalidateSelf(); |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 320 | } |
Sunny Goyal | 338d15d | 2018-02-23 12:19:44 -0800 | [diff] [blame] | 321 | |
| 322 | @Override |
| 323 | public ConstantState getConstantState() { |
| 324 | return new MyConstantState(mBitmap, mIconColor); |
| 325 | } |
| 326 | |
| 327 | private static class MyConstantState extends ConstantState { |
| 328 | private final Bitmap mBitmap; |
| 329 | private final int mIconColor; |
| 330 | |
| 331 | |
| 332 | public MyConstantState(Bitmap bitmap, int color) { |
| 333 | mBitmap = bitmap; |
| 334 | mIconColor = color; |
| 335 | } |
| 336 | |
| 337 | @Override |
| 338 | public Drawable newDrawable() { |
| 339 | return new FastBitmapDrawable(mBitmap, mIconColor); |
| 340 | } |
| 341 | |
| 342 | @Override |
| 343 | public int getChangingConfigurations() { |
| 344 | return 0; |
| 345 | } |
| 346 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 347 | } |