1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.systemui.scrim;
import static java.lang.Float.isNaN;
import android.annotation.NonNull;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.PorterDuff;
import android.graphics.PorterDuff.Mode;
import android.graphics.PorterDuffColorFilter;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.os.Looper;
import android.util.AttributeSet;
import android.view.View;
import androidx.annotation.Nullable;
import androidx.core.graphics.ColorUtils;
import com.android.internal.annotations.GuardedBy;
import com.android.internal.annotations.VisibleForTesting;
import com.android.internal.colorextraction.ColorExtractor;
import java.util.concurrent.Executor;
/**
* A view which can draw a scrim. This view maybe be used in multiple windows running on different
* threads, but is controlled by {@link com.android.systemui.statusbar.phone.ScrimController} so we
* need to be careful to synchronize when necessary.
*/
public class ScrimView extends View {
private final Object mColorLock = new Object();
@GuardedBy("mColorLock")
private final ColorExtractor.GradientColors mColors;
// Used only for returning the colors
private final ColorExtractor.GradientColors mTmpColors = new ColorExtractor.GradientColors();
private float mViewAlpha = 1.0f;
private Drawable mDrawable;
private PorterDuffColorFilter mColorFilter;
private int mTintColor;
private boolean mBlendWithMainColor = true;
private Runnable mChangeRunnable;
private Executor mChangeRunnableExecutor;
private Executor mExecutor;
private Looper mExecutorLooper;
@Nullable
private Rect mDrawableBounds;
public ScrimView(Context context) {
this(context, null);
}
public ScrimView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public ScrimView(Context context, AttributeSet attrs, int defStyleAttr) {
this(context, attrs, defStyleAttr, 0);
}
public ScrimView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
mDrawable = new ScrimDrawable();
mDrawable.setCallback(this);
mColors = new ColorExtractor.GradientColors();
mExecutorLooper = Looper.myLooper();
mExecutor = Runnable::run;
executeOnExecutor(() -> {
updateColorWithTint(false);
});
}
/**
* Needed for WM Shell, which has its own thread structure.
*/
public void setExecutor(Executor executor, Looper looper) {
mExecutor = executor;
mExecutorLooper = looper;
}
@Override
protected void onDraw(Canvas canvas) {
if (mDrawable.getAlpha() > 0) {
mDrawable.draw(canvas);
}
}
@VisibleForTesting
void setDrawable(Drawable drawable) {
executeOnExecutor(() -> {
mDrawable = drawable;
mDrawable.setCallback(this);
mDrawable.setBounds(getLeft(), getTop(), getRight(), getBottom());
mDrawable.setAlpha((int) (255 * mViewAlpha));
invalidate();
});
}
@Override
public void invalidateDrawable(@NonNull Drawable drawable) {
super.invalidateDrawable(drawable);
if (drawable == mDrawable) {
invalidate();
}
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
if (mDrawableBounds != null) {
mDrawable.setBounds(mDrawableBounds);
} else if (changed) {
mDrawable.setBounds(left, top, right, bottom);
invalidate();
}
}
@Override
public void setClickable(boolean clickable) {
executeOnExecutor(() -> {
super.setClickable(clickable);
});
}
/**
* Sets the color of the scrim, without animating them.
*/
public void setColors(@NonNull ColorExtractor.GradientColors colors) {
setColors(colors, false);
}
/**
* Sets the scrim colors, optionally animating them.
* @param colors The colors.
* @param animated If we should animate the transition.
*/
public void setColors(@NonNull ColorExtractor.GradientColors colors, boolean animated) {
if (colors == null) {
throw new IllegalArgumentException("Colors cannot be null");
}
executeOnExecutor(() -> {
synchronized (mColorLock) {
if (mColors.equals(colors)) {
return;
}
mColors.set(colors);
}
updateColorWithTint(animated);
});
}
@VisibleForTesting
Drawable getDrawable() {
return mDrawable;
}
/**
* Returns current scrim colors.
*/
public ColorExtractor.GradientColors getColors() {
synchronized (mColorLock) {
mTmpColors.set(mColors);
}
return mTmpColors;
}
/**
* Applies tint to this view, without animations.
*/
public void setTint(int color) {
setTint(color, false);
}
/**
* The call to {@link #setTint} will blend with the main color, with the amount
* determined by the alpha of the tint. Set to false to avoid this blend.
*/
public void setBlendWithMainColor(boolean blend) {
mBlendWithMainColor = blend;
}
/** @return true if blending tint color with main color */
public boolean shouldBlendWithMainColor() {
return mBlendWithMainColor;
}
/**
* Tints this view, optionally animating it.
* @param color The color.
* @param animated If we should animate.
*/
public void setTint(int color, boolean animated) {
executeOnExecutor(() -> {
if (mTintColor == color) {
return;
}
mTintColor = color;
updateColorWithTint(animated);
});
}
private void updateColorWithTint(boolean animated) {
if (mDrawable instanceof ScrimDrawable) {
// Optimization to blend colors and avoid a color filter
ScrimDrawable drawable = (ScrimDrawable) mDrawable;
float tintAmount = Color.alpha(mTintColor) / 255f;
int mainTinted = mTintColor;
if (mBlendWithMainColor) {
mainTinted = ColorUtils.blendARGB(mColors.getMainColor(), mTintColor, tintAmount);
}
drawable.setColor(mainTinted, animated);
} else {
boolean hasAlpha = Color.alpha(mTintColor) != 0;
if (hasAlpha) {
PorterDuff.Mode targetMode = mColorFilter == null
? Mode.SRC_OVER : mColorFilter.getMode();
if (mColorFilter == null || mColorFilter.getColor() != mTintColor) {
mColorFilter = new PorterDuffColorFilter(mTintColor, targetMode);
}
} else {
mColorFilter = null;
}
mDrawable.setColorFilter(mColorFilter);
mDrawable.invalidateSelf();
}
if (mChangeRunnable != null) {
mChangeRunnableExecutor.execute(mChangeRunnable);
}
}
public int getTint() {
return mTintColor;
}
@Override
public boolean hasOverlappingRendering() {
return false;
}
/**
* It might look counterintuitive to have another method to set the alpha instead of
* only using {@link #setAlpha(float)}. In this case we're in a hardware layer
* optimizing blend modes, so it makes sense.
*
* @param alpha Gradient alpha from 0 to 1.
*/
public void setViewAlpha(float alpha) {
if (isNaN(alpha)) {
throw new IllegalArgumentException("alpha cannot be NaN: " + alpha);
}
executeOnExecutor(() -> {
if (alpha != mViewAlpha) {
mViewAlpha = alpha;
mDrawable.setAlpha((int) (255 * alpha));
if (mChangeRunnable != null) {
mChangeRunnableExecutor.execute(mChangeRunnable);
}
}
});
}
public float getViewAlpha() {
return mViewAlpha;
}
/**
* Sets a callback that is invoked whenever the alpha, color, or tint change.
*/
public void setChangeRunnable(Runnable changeRunnable, Executor changeRunnableExecutor) {
mChangeRunnable = changeRunnable;
mChangeRunnableExecutor = changeRunnableExecutor;
}
@Override
protected boolean canReceivePointerEvents() {
return false;
}
private void executeOnExecutor(Runnable r) {
if (mExecutor == null || Looper.myLooper() == mExecutorLooper) {
r.run();
} else {
mExecutor.execute(r);
}
}
/**
* Make bottom edge concave so overlap between layers is not visible for alphas between 0 and 1
*/
public void enableBottomEdgeConcave(boolean clipScrim) {
if (mDrawable instanceof ScrimDrawable) {
((ScrimDrawable) mDrawable).setBottomEdgeConcave(clipScrim);
}
}
/**
* The position of the bottom of the scrim, used for clipping.
* @see #enableBottomEdgeConcave(boolean)
*/
public void setBottomEdgePosition(int y) {
if (mDrawable instanceof ScrimDrawable) {
((ScrimDrawable) mDrawable).setBottomEdgePosition(y);
}
}
/**
* Enable view to have rounded corners.
*/
public void enableRoundedCorners(boolean enabled) {
if (mDrawable instanceof ScrimDrawable) {
((ScrimDrawable) mDrawable).setRoundedCornersEnabled(enabled);
}
}
/**
* Set bounds for the view, all coordinates are absolute
*/
public void setDrawableBounds(float left, float top, float right, float bottom) {
if (mDrawableBounds == null) {
mDrawableBounds = new Rect();
}
mDrawableBounds.set((int) left, (int) top, (int) right, (int) bottom);
mDrawable.setBounds(mDrawableBounds);
}
/**
* Corner radius of both concave or convex corners.
* @see #enableRoundedCorners(boolean)
* @see #enableBottomEdgeConcave(boolean)
*/
public void setCornerRadius(int radius) {
if (mDrawable instanceof ScrimDrawable) {
((ScrimDrawable) mDrawable).setRoundedCorners(radius);
}
}
}
|