blob: 1a47e4428e4908f607dc662117bc37a311756a9b [file] [log] [blame]
Joe Onorato0cbda992010-05-02 16:28:15 -07001/*
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
Joe Onorato79de0c52010-05-26 17:03:26 -040017package com.android.systemui.statusbar;
Joe Onorato0cbda992010-05-02 16:28:15 -070018
Selim Cinek49014f82016-11-04 14:55:30 -070019import android.animation.Animator;
20import android.animation.AnimatorListenerAdapter;
21import android.animation.ObjectAnimator;
Selim Cinek875ba9b2017-02-13 16:20:17 -080022import android.animation.ValueAnimator;
Svetoslav Ganov6179ea32011-06-28 01:12:41 -070023import android.app.Notification;
Joe Onorato0cbda992010-05-02 16:28:15 -070024import android.content.Context;
Adrian Roosa8e18ef2016-05-26 17:17:02 -070025import android.content.pm.ApplicationInfo;
Selim Cinek875ba9b2017-02-13 16:20:17 -080026import android.content.res.ColorStateList;
Selim Cinek3e7592d2016-04-11 09:35:54 +080027import android.content.res.Configuration;
Joe Onorato0cbda992010-05-02 16:28:15 -070028import android.content.res.Resources;
Joe Onorato0cbda992010-05-02 16:28:15 -070029import android.graphics.Canvas;
Adrian Roos456e0052017-04-04 16:44:29 -070030import android.graphics.Color;
Joe Onorato6c01a112010-10-04 17:38:47 -040031import android.graphics.Paint;
32import android.graphics.Rect;
John Spurlockde84f0e2013-06-12 12:41:00 -040033import android.graphics.drawable.Drawable;
Dan Sandlerd63f9322015-05-06 15:18:49 -040034import android.graphics.drawable.Icon;
Adrian Roosa8e18ef2016-05-26 17:17:02 -070035import android.os.Parcelable;
Jeff Sharkeyded653b2012-09-27 19:09:24 -070036import android.os.UserHandle;
Selim Cinek72fc8db2017-06-06 18:07:47 -070037import android.service.notification.StatusBarNotification;
Lucas Dupin83519da2017-06-21 11:58:31 -070038import android.support.v4.graphics.ColorUtils;
Svetoslav Ganov6179ea32011-06-28 01:12:41 -070039import android.text.TextUtils;
Daniel Sandler05e24142011-11-10 11:56:49 -050040import android.util.AttributeSet;
Selim Cinek49014f82016-11-04 14:55:30 -070041import android.util.FloatProperty;
Joe Onoratof9ec03c2010-09-23 15:09:18 -070042import android.util.Log;
Selim Cinek49014f82016-11-04 14:55:30 -070043import android.util.Property;
Anthony Chen55e8e1e2016-01-08 10:31:46 -080044import android.util.TypedValue;
Joe Onorato0cbda992010-05-02 16:28:15 -070045import android.view.ViewDebug;
Svetoslav Ganov6179ea32011-06-28 01:12:41 -070046import android.view.accessibility.AccessibilityEvent;
Selim Cinek49014f82016-11-04 14:55:30 -070047import android.view.animation.Interpolator;
Winsonc0d70582016-01-29 10:24:39 -080048
Joe Onorato0cbda992010-05-02 16:28:15 -070049import com.android.internal.statusbar.StatusBarIcon;
Lucas Dupin83519da2017-06-21 11:58:31 -070050import com.android.internal.util.NotificationColorUtil;
Selim Cinek49014f82016-11-04 14:55:30 -070051import com.android.systemui.Interpolators;
Joe Onorato6c01a112010-10-04 17:38:47 -040052import com.android.systemui.R;
Adrian Roos456e0052017-04-04 16:44:29 -070053import com.android.systemui.statusbar.notification.NotificationIconDozeHelper;
Selim Cinek49014f82016-11-04 14:55:30 -070054import com.android.systemui.statusbar.notification.NotificationUtils;
Joe Onorato6c01a112010-10-04 17:38:47 -040055
John Spurlockde84f0e2013-06-12 12:41:00 -040056import java.text.NumberFormat;
57
Joe Onorato0cbda992010-05-02 16:28:15 -070058public class StatusBarIconView extends AnimatedImageView {
Selim Cinek875ba9b2017-02-13 16:20:17 -080059 public static final int NO_COLOR = 0;
60 private final int ANIMATION_DURATION_FAST = 100;
61
Selim Cinek49014f82016-11-04 14:55:30 -070062 public static final int STATE_ICON = 0;
63 public static final int STATE_DOT = 1;
64 public static final int STATE_HIDDEN = 2;
Joe Onorato0cbda992010-05-02 16:28:15 -070065
Selim Cinek49014f82016-11-04 14:55:30 -070066 private static final String TAG = "StatusBarIconView";
67 private static final Property<StatusBarIconView, Float> ICON_APPEAR_AMOUNT
68 = new FloatProperty<StatusBarIconView>("iconAppearAmount") {
69
70 @Override
71 public void setValue(StatusBarIconView object, float value) {
72 object.setIconAppearAmount(value);
73 }
74
75 @Override
76 public Float get(StatusBarIconView object) {
77 return object.getIconAppearAmount();
78 }
79 };
Selim Cinek5b5beb012016-11-08 18:11:58 -080080 private static final Property<StatusBarIconView, Float> DOT_APPEAR_AMOUNT
Selim Cinek49014f82016-11-04 14:55:30 -070081 = new FloatProperty<StatusBarIconView>("dot_appear_amount") {
82
83 @Override
84 public void setValue(StatusBarIconView object, float value) {
85 object.setDotAppearAmount(value);
86 }
87
88 @Override
89 public Float get(StatusBarIconView object) {
90 return object.getDotAppearAmount();
91 }
92 };
93
94 private boolean mAlwaysScaleIcon;
Adrian Roos138f0342017-04-28 09:11:28 -070095 private int mStatusBarIconDrawingSizeDark = 1;
96 private int mStatusBarIconDrawingSize = 1;
97 private int mStatusBarIconSize = 1;
Joe Onorato0cbda992010-05-02 16:28:15 -070098 private StatusBarIcon mIcon;
99 @ViewDebug.ExportedProperty private String mSlot;
Joe Onorato6c01a112010-10-04 17:38:47 -0400100 private Drawable mNumberBackground;
101 private Paint mNumberPain;
102 private int mNumberX;
103 private int mNumberY;
104 private String mNumberText;
Selim Cinek72fc8db2017-06-06 18:07:47 -0700105 private StatusBarNotification mNotification;
Jason Monk3b230072015-05-29 11:11:29 -0400106 private final boolean mBlocked;
Selim Cinek3e7592d2016-04-11 09:35:54 +0800107 private int mDensity;
Selim Cinek281c2022016-10-13 19:14:43 -0700108 private float mIconScale = 1.0f;
Selim Cinek49014f82016-11-04 14:55:30 -0700109 private final Paint mDotPaint = new Paint();
Selim Cinek49014f82016-11-04 14:55:30 -0700110 private float mDotRadius;
111 private int mStaticDotRadius;
112 private int mVisibleState = STATE_ICON;
113 private float mIconAppearAmount = 1.0f;
114 private ObjectAnimator mIconAppearAnimator;
115 private ObjectAnimator mDotAnimator;
116 private float mDotAppearAmount;
Selim Cinek2b549f42016-11-22 16:38:51 -0800117 private OnVisibilityChangedListener mOnVisibilityChangedListener;
Selim Cinek875ba9b2017-02-13 16:20:17 -0800118 private int mDrawableColor;
119 private int mIconColor;
Adrian Roos456e0052017-04-04 16:44:29 -0700120 private int mDecorColor;
121 private float mDarkAmount;
Selim Cinek875ba9b2017-02-13 16:20:17 -0800122 private ValueAnimator mColorAnimator;
123 private int mCurrentSetColor = NO_COLOR;
124 private int mAnimationStartColor = NO_COLOR;
125 private final ValueAnimator.AnimatorUpdateListener mColorUpdater
126 = animation -> {
127 int newColor = NotificationUtils.interpolateColors(mAnimationStartColor, mIconColor,
128 animation.getAnimatedFraction());
129 setColorInternal(newColor);
130 };
Adrian Roos456e0052017-04-04 16:44:29 -0700131 private final NotificationIconDozeHelper mDozer;
Lucas Dupin83519da2017-06-21 11:58:31 -0700132 private int mContrastedDrawableColor;
133 private int mCachedContrastBackgroundColor = NO_COLOR;
Joe Onorato0cbda992010-05-02 16:28:15 -0700134
Selim Cinek72fc8db2017-06-06 18:07:47 -0700135 public StatusBarIconView(Context context, String slot, StatusBarNotification sbn) {
136 this(context, slot, sbn, false);
Jason Monk3b230072015-05-29 11:11:29 -0400137 }
138
Selim Cinek72fc8db2017-06-06 18:07:47 -0700139 public StatusBarIconView(Context context, String slot, StatusBarNotification sbn,
Jason Monk3b230072015-05-29 11:11:29 -0400140 boolean blocked) {
Joe Onorato0cbda992010-05-02 16:28:15 -0700141 super(context);
Adrian Roos456e0052017-04-04 16:44:29 -0700142 mDozer = new NotificationIconDozeHelper(context);
Jason Monk3b230072015-05-29 11:11:29 -0400143 mBlocked = blocked;
Joe Onorato0cbda992010-05-02 16:28:15 -0700144 mSlot = slot;
Joe Onorato6c01a112010-10-04 17:38:47 -0400145 mNumberPain = new Paint();
146 mNumberPain.setTextAlign(Paint.Align.CENTER);
Alan Viverette4a357cd2015-03-18 18:37:18 -0700147 mNumberPain.setColor(context.getColor(R.drawable.notification_number_text_color));
Joe Onorato6c01a112010-10-04 17:38:47 -0400148 mNumberPain.setAntiAlias(true);
Selim Cinek72fc8db2017-06-06 18:07:47 -0700149 setNotification(sbn);
Adrian Roos138f0342017-04-28 09:11:28 -0700150 maybeUpdateIconScaleDimens();
Selim Cinek3e7592d2016-04-11 09:35:54 +0800151 setScaleType(ScaleType.CENTER);
152 mDensity = context.getResources().getDisplayMetrics().densityDpi;
Selim Cinek49014f82016-11-04 14:55:30 -0700153 if (mNotification != null) {
Selim Cinek875ba9b2017-02-13 16:20:17 -0800154 setDecorColor(getContext().getColor(
Selim Cinek49014f82016-11-04 14:55:30 -0700155 com.android.internal.R.color.notification_icon_default_color));
156 }
157 reloadDimens();
Selim Cinek3e7592d2016-04-11 09:35:54 +0800158 }
Daniel Sandler26c84b12011-07-27 00:09:40 -0400159
Adrian Roos138f0342017-04-28 09:11:28 -0700160 private void maybeUpdateIconScaleDimens() {
Daniel Sandler7579bca2011-08-18 15:47:26 -0400161 // We do not resize and scale system icons (on the right), only notification icons (on the
162 // left).
Selim Cinek3e7592d2016-04-11 09:35:54 +0800163 if (mNotification != null || mAlwaysScaleIcon) {
Adrian Roos138f0342017-04-28 09:11:28 -0700164 updateIconScaleDimens();
Daniel Sandler7579bca2011-08-18 15:47:26 -0400165 }
Selim Cinek3e7592d2016-04-11 09:35:54 +0800166 }
Daniel Sandlerabff0322011-09-27 11:19:34 -0400167
Adrian Roos138f0342017-04-28 09:11:28 -0700168 private void updateIconScaleDimens() {
Selim Cinek3e7592d2016-04-11 09:35:54 +0800169 Resources res = mContext.getResources();
Adrian Roos138f0342017-04-28 09:11:28 -0700170 mStatusBarIconSize = res.getDimensionPixelSize(R.dimen.status_bar_icon_size);
171 mStatusBarIconDrawingSizeDark =
172 res.getDimensionPixelSize(R.dimen.status_bar_icon_drawing_size_dark);
173 mStatusBarIconDrawingSize =
174 res.getDimensionPixelSize(R.dimen.status_bar_icon_drawing_size);
175 updateIconScale();
176 }
177
178 private void updateIconScale() {
179 final float imageBounds = NotificationUtils.interpolate(
180 mStatusBarIconDrawingSize,
181 mStatusBarIconDrawingSizeDark,
182 mDarkAmount);
183 final int outerBounds = mStatusBarIconSize;
Selim Cinek281c2022016-10-13 19:14:43 -0700184 mIconScale = (float)imageBounds / (float)outerBounds;
Selim Cinek281c2022016-10-13 19:14:43 -0700185 }
186
Adrian Roosceac4a02017-05-30 20:25:52 -0700187 public float getIconScaleFullyDark() {
188 return (float) mStatusBarIconDrawingSizeDark / mStatusBarIconDrawingSize;
189 }
190
Selim Cinek281c2022016-10-13 19:14:43 -0700191 public float getIconScale() {
192 return mIconScale;
Selim Cinek3e7592d2016-04-11 09:35:54 +0800193 }
194
195 @Override
196 protected void onConfigurationChanged(Configuration newConfig) {
197 super.onConfigurationChanged(newConfig);
198 int density = newConfig.densityDpi;
199 if (density != mDensity) {
200 mDensity = density;
Adrian Roos138f0342017-04-28 09:11:28 -0700201 maybeUpdateIconScaleDimens();
Selim Cinek3e7592d2016-04-11 09:35:54 +0800202 updateDrawable();
Selim Cinek49014f82016-11-04 14:55:30 -0700203 reloadDimens();
204 }
205 }
206
207 private void reloadDimens() {
208 boolean applyRadius = mDotRadius == mStaticDotRadius;
209 mStaticDotRadius = getResources().getDimensionPixelSize(R.dimen.overflow_dot_radius);
210 if (applyRadius) {
211 mDotRadius = mStaticDotRadius;
Selim Cinek3e7592d2016-04-11 09:35:54 +0800212 }
Joe Onorato0cbda992010-05-02 16:28:15 -0700213 }
214
Selim Cinek72fc8db2017-06-06 18:07:47 -0700215 public void setNotification(StatusBarNotification notification) {
Christoph Studera0506e72014-07-31 20:27:39 +0200216 mNotification = notification;
Selim Cinek72fc8db2017-06-06 18:07:47 -0700217 if (notification != null) {
218 setContentDescription(notification.getNotification());
219 }
Christoph Studera0506e72014-07-31 20:27:39 +0200220 }
221
Daniel Sandler05e24142011-11-10 11:56:49 -0500222 public StatusBarIconView(Context context, AttributeSet attrs) {
223 super(context, attrs);
Adrian Roos456e0052017-04-04 16:44:29 -0700224 mDozer = new NotificationIconDozeHelper(context);
Jason Monk3b230072015-05-29 11:11:29 -0400225 mBlocked = false;
Selim Cinek3e7592d2016-04-11 09:35:54 +0800226 mAlwaysScaleIcon = true;
Adrian Roos138f0342017-04-28 09:11:28 -0700227 updateIconScaleDimens();
Selim Cinek3e7592d2016-04-11 09:35:54 +0800228 mDensity = context.getResources().getDisplayMetrics().densityDpi;
Daniel Sandler05e24142011-11-10 11:56:49 -0500229 }
230
Joe Onorato0cbda992010-05-02 16:28:15 -0700231 private static boolean streq(String a, String b) {
Joe Onorato66d7d012010-05-14 10:05:10 -0700232 if (a == b) {
233 return true;
234 }
Joe Onorato0cbda992010-05-02 16:28:15 -0700235 if (a == null && b != null) {
236 return false;
237 }
238 if (a != null && b == null) {
239 return false;
240 }
241 return a.equals(b);
242 }
243
Dan Sandlerd63f9322015-05-06 15:18:49 -0400244 public boolean equalIcons(Icon a, Icon b) {
245 if (a == b) return true;
246 if (a.getType() != b.getType()) return false;
247 switch (a.getType()) {
248 case Icon.TYPE_RESOURCE:
249 return a.getResPackage().equals(b.getResPackage()) && a.getResId() == b.getResId();
250 case Icon.TYPE_URI:
251 return a.getUriString().equals(b.getUriString());
252 default:
253 return false;
254 }
255 }
Joe Onorato005847b2010-06-04 16:08:02 -0400256 /**
257 * Returns whether the set succeeded.
258 */
259 public boolean set(StatusBarIcon icon) {
Dan Sandlerd63f9322015-05-06 15:18:49 -0400260 final boolean iconEquals = mIcon != null && equalIcons(mIcon.icon, icon.icon);
Joe Onorato005847b2010-06-04 16:08:02 -0400261 final boolean levelEquals = iconEquals
262 && mIcon.iconLevel == icon.iconLevel;
263 final boolean visibilityEquals = mIcon != null
264 && mIcon.visible == icon.visible;
Joe Onorato6c01a112010-10-04 17:38:47 -0400265 final boolean numberEquals = mIcon != null
266 && mIcon.number == icon.number;
267 mIcon = icon.clone();
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700268 setContentDescription(icon.contentDescription);
Joe Onorato005847b2010-06-04 16:08:02 -0400269 if (!iconEquals) {
Fabrice Di Meglio82fca5d2013-01-09 15:42:31 -0800270 if (!updateDrawable(false /* no clear */)) return false;
Selim Cinek2b6eb8032016-12-29 14:22:21 +0100271 // we have to clear the grayscale tag since it may have changed
272 setTag(R.id.icon_is_grayscale, null);
Joe Onorato0cbda992010-05-02 16:28:15 -0700273 }
Joe Onorato005847b2010-06-04 16:08:02 -0400274 if (!levelEquals) {
275 setImageLevel(icon.iconLevel);
Joe Onorato0cbda992010-05-02 16:28:15 -0700276 }
Daniel Sandler26c84b12011-07-27 00:09:40 -0400277
Joe Onorato6c01a112010-10-04 17:38:47 -0400278 if (!numberEquals) {
John Spurlock01534782014-01-13 11:59:22 -0500279 if (icon.number > 0 && getContext().getResources().getBoolean(
Joe Onorato8595a3d2010-11-19 18:12:07 -0800280 R.bool.config_statusBarShowNumber)) {
Joe Onorato6c01a112010-10-04 17:38:47 -0400281 if (mNumberBackground == null) {
282 mNumberBackground = getContext().getResources().getDrawable(
283 R.drawable.ic_notification_overlay);
284 }
285 placeNumber();
286 } else {
287 mNumberBackground = null;
288 mNumberText = null;
289 }
290 invalidate();
291 }
Joe Onorato005847b2010-06-04 16:08:02 -0400292 if (!visibilityEquals) {
Jason Monk3b230072015-05-29 11:11:29 -0400293 setVisibility(icon.visible && !mBlocked ? VISIBLE : GONE);
Joe Onorato005847b2010-06-04 16:08:02 -0400294 }
Joe Onorato005847b2010-06-04 16:08:02 -0400295 return true;
Joe Onorato0cbda992010-05-02 16:28:15 -0700296 }
297
Fabrice Di Meglio82fca5d2013-01-09 15:42:31 -0800298 public void updateDrawable() {
299 updateDrawable(true /* with clear */);
300 }
301
302 private boolean updateDrawable(boolean withClear) {
Jorim Jaggi66ac1332015-01-21 19:22:26 +0100303 if (mIcon == null) {
304 return false;
305 }
Adrian Roosfb2d0cc2017-01-31 15:10:00 -0800306 Drawable drawable;
307 try {
308 drawable = getIcon(mIcon);
309 } catch (OutOfMemoryError e) {
310 Log.w(TAG, "OOM while inflating " + mIcon.icon + " for slot " + mSlot);
311 return false;
312 }
313
Fabrice Di Meglio82fca5d2013-01-09 15:42:31 -0800314 if (drawable == null) {
Adrian Roosfb2d0cc2017-01-31 15:10:00 -0800315 Log.w(TAG, "No icon for slot " + mSlot + "; " + mIcon.icon);
Fabrice Di Meglio82fca5d2013-01-09 15:42:31 -0800316 return false;
317 }
318 if (withClear) {
319 setImageDrawable(null);
320 }
321 setImageDrawable(drawable);
322 return true;
323 }
324
Selim Cinek72fc8db2017-06-06 18:07:47 -0700325 public Icon getSourceIcon() {
326 return mIcon.icon;
327 }
328
Joe Onoratof5510542010-06-01 07:46:41 -0700329 private Drawable getIcon(StatusBarIcon icon) {
330 return getIcon(getContext(), icon);
331 }
332
Joe Onorato0cbda992010-05-02 16:28:15 -0700333 /**
Dan Sandlerd63f9322015-05-06 15:18:49 -0400334 * Returns the right icon to use for this item
John Spurlock209bede2013-07-17 12:23:27 -0400335 *
Dan Sandlerd63f9322015-05-06 15:18:49 -0400336 * @param context Context to use to get resources
Joe Onorato0cbda992010-05-02 16:28:15 -0700337 * @return Drawable for this item, or null if the package or item could not
338 * be found
339 */
Anthony Chen55e8e1e2016-01-08 10:31:46 -0800340 public static Drawable getIcon(Context context, StatusBarIcon statusBarIcon) {
341 int userId = statusBarIcon.user.getIdentifier();
Dan Sandlerd63f9322015-05-06 15:18:49 -0400342 if (userId == UserHandle.USER_ALL) {
Xiaohui Chen87d0e252015-07-30 15:38:16 -0700343 userId = UserHandle.USER_SYSTEM;
Joe Onorato0cbda992010-05-02 16:28:15 -0700344 }
Anthony Chen55e8e1e2016-01-08 10:31:46 -0800345
346 Drawable icon = statusBarIcon.icon.loadDrawableAsUser(context, userId);
347
348 TypedValue typedValue = new TypedValue();
349 context.getResources().getValue(R.dimen.status_bar_icon_scale_factor, typedValue, true);
350 float scaleFactor = typedValue.getFloat();
351
352 // No need to scale the icon, so return it as is.
353 if (scaleFactor == 1.f) {
354 return icon;
355 }
356
357 return new ScalingDrawableWrapper(icon, scaleFactor);
Joe Onorato0cbda992010-05-02 16:28:15 -0700358 }
Joe Onoratob77f53b2010-05-28 19:59:51 -0400359
360 public StatusBarIcon getStatusBarIcon() {
361 return mIcon;
362 }
Joe Onoratof9ec03c2010-09-23 15:09:18 -0700363
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700364 @Override
365 public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
366 super.onInitializeAccessibilityEvent(event);
367 if (mNotification != null) {
Selim Cinek72fc8db2017-06-06 18:07:47 -0700368 event.setParcelableData(mNotification.getNotification());
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700369 }
370 }
371
372 @Override
Joe Onorato6c01a112010-10-04 17:38:47 -0400373 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
374 super.onSizeChanged(w, h, oldw, oldh);
375 if (mNumberBackground != null) {
376 placeNumber();
377 }
378 }
379
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700380 @Override
Jorim Jaggi66ac1332015-01-21 19:22:26 +0100381 public void onRtlPropertiesChanged(int layoutDirection) {
382 super.onRtlPropertiesChanged(layoutDirection);
383 updateDrawable();
384 }
385
386 @Override
Joe Onorato6c01a112010-10-04 17:38:47 -0400387 protected void onDraw(Canvas canvas) {
Selim Cinek49014f82016-11-04 14:55:30 -0700388 if (mIconAppearAmount > 0.0f) {
389 canvas.save();
390 canvas.scale(mIconScale * mIconAppearAmount, mIconScale * mIconAppearAmount,
391 getWidth() / 2, getHeight() / 2);
392 super.onDraw(canvas);
393 canvas.restore();
394 }
Joe Onorato6c01a112010-10-04 17:38:47 -0400395
396 if (mNumberBackground != null) {
397 mNumberBackground.draw(canvas);
398 canvas.drawText(mNumberText, mNumberX, mNumberY, mNumberPain);
399 }
Selim Cinek49014f82016-11-04 14:55:30 -0700400 if (mDotAppearAmount != 0.0f) {
401 float radius;
402 float alpha;
403 if (mDotAppearAmount <= 1.0f) {
404 radius = mDotRadius * mDotAppearAmount;
405 alpha = 1.0f;
406 } else {
407 float fadeOutAmount = mDotAppearAmount - 1.0f;
408 alpha = 1.0f - fadeOutAmount;
409 radius = NotificationUtils.interpolate(mDotRadius, getWidth() / 4, fadeOutAmount);
410 }
411 mDotPaint.setAlpha((int) (alpha * 255));
412 canvas.drawCircle(getWidth() / 2, getHeight() / 2, radius, mDotPaint);
413 }
Joe Onorato6c01a112010-10-04 17:38:47 -0400414 }
415
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700416 @Override
Joe Onoratof9ec03c2010-09-23 15:09:18 -0700417 protected void debug(int depth) {
418 super.debug(depth);
419 Log.d("View", debugIndent(depth) + "slot=" + mSlot);
420 Log.d("View", debugIndent(depth) + "icon=" + mIcon);
421 }
Joe Onorato6c01a112010-10-04 17:38:47 -0400422
423 void placeNumber() {
Daniel Sandlerebce0112011-06-16 16:44:51 -0400424 final String str;
John Spurlock01534782014-01-13 11:59:22 -0500425 final int tooBig = getContext().getResources().getInteger(
Daniel Sandlerebce0112011-06-16 16:44:51 -0400426 android.R.integer.status_bar_notification_info_maxnum);
427 if (mIcon.number > tooBig) {
John Spurlock01534782014-01-13 11:59:22 -0500428 str = getContext().getResources().getString(
Daniel Sandlerebce0112011-06-16 16:44:51 -0400429 android.R.string.status_bar_notification_info_overflow);
430 } else {
431 NumberFormat f = NumberFormat.getIntegerInstance();
432 str = f.format(mIcon.number);
433 }
434 mNumberText = str;
435
Joe Onorato6c01a112010-10-04 17:38:47 -0400436 final int w = getWidth();
437 final int h = getHeight();
438 final Rect r = new Rect();
439 mNumberPain.getTextBounds(str, 0, str.length(), r);
440 final int tw = r.right - r.left;
441 final int th = r.bottom - r.top;
442 mNumberBackground.getPadding(r);
443 int dw = r.left + tw + r.right;
444 if (dw < mNumberBackground.getMinimumWidth()) {
445 dw = mNumberBackground.getMinimumWidth();
446 }
447 mNumberX = w-r.right-((dw-r.right-r.left)/2);
448 int dh = r.top + th + r.bottom;
449 if (dh < mNumberBackground.getMinimumWidth()) {
450 dh = mNumberBackground.getMinimumWidth();
451 }
452 mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2);
453 mNumberBackground.setBounds(w-dw, h-dh, w, h);
454 }
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700455
456 private void setContentDescription(Notification notification) {
457 if (notification != null) {
Adrian Rooseba05822016-04-22 17:09:27 -0700458 String d = contentDescForNotification(mContext, notification);
459 if (!TextUtils.isEmpty(d)) {
460 setContentDescription(d);
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700461 }
462 }
463 }
Daniel Sandler7579bca2011-08-18 15:47:26 -0400464
465 public String toString() {
John Spurlock209bede2013-07-17 12:23:27 -0400466 return "StatusBarIconView(slot=" + mSlot + " icon=" + mIcon
Daniel Sandler7579bca2011-08-18 15:47:26 -0400467 + " notification=" + mNotification + ")";
468 }
Jason Monk3b230072015-05-29 11:11:29 -0400469
Selim Cinek72fc8db2017-06-06 18:07:47 -0700470 public StatusBarNotification getNotification() {
471 return mNotification;
472 }
473
Jason Monk3b230072015-05-29 11:11:29 -0400474 public String getSlot() {
475 return mSlot;
476 }
Adrian Rooseba05822016-04-22 17:09:27 -0700477
478
479 public static String contentDescForNotification(Context c, Notification n) {
Adrian Roosa8e18ef2016-05-26 17:17:02 -0700480 String appName = "";
481 try {
482 Notification.Builder builder = Notification.Builder.recoverBuilder(c, n);
483 appName = builder.loadHeaderAppName();
484 } catch (RuntimeException e) {
485 Log.e(TAG, "Unable to recover builder", e);
486 // Trying to get the app name from the app info instead.
487 Parcelable appInfo = n.extras.getParcelable(
488 Notification.EXTRA_BUILDER_APPLICATION_INFO);
489 if (appInfo instanceof ApplicationInfo) {
490 appName = String.valueOf(((ApplicationInfo) appInfo).loadLabel(
491 c.getPackageManager()));
492 }
493 }
Adrian Roos51548e62016-04-28 11:20:26 -0700494
Julia Reynolds7f9ce782016-05-17 15:34:34 -0400495 CharSequence title = n.extras.getCharSequence(Notification.EXTRA_TITLE);
Adrian Roosf76600e2017-04-19 15:32:43 -0700496 CharSequence text = n.extras.getCharSequence(Notification.EXTRA_TEXT);
Adrian Rooseba05822016-04-22 17:09:27 -0700497 CharSequence ticker = n.tickerText;
Adrian Roos51548e62016-04-28 11:20:26 -0700498
Adrian Roosf76600e2017-04-19 15:32:43 -0700499 // Some apps just put the app name into the title
500 CharSequence titleOrText = TextUtils.equals(title, appName) ? text : title;
501
502 CharSequence desc = !TextUtils.isEmpty(titleOrText) ? titleOrText
Adrian Roos6e782a52017-03-30 18:34:10 -0700503 : !TextUtils.isEmpty(ticker) ? ticker : "";
Adrian Roos51548e62016-04-28 11:20:26 -0700504
505 return c.getString(R.string.accessibility_desc_notification_icon, appName, desc);
Adrian Rooseba05822016-04-22 17:09:27 -0700506 }
Adrian Roos51548e62016-04-28 11:20:26 -0700507
Selim Cinek875ba9b2017-02-13 16:20:17 -0800508 /**
509 * Set the color that is used to draw decoration like the overflow dot. This will not be applied
510 * to the drawable.
511 */
512 public void setDecorColor(int iconTint) {
Adrian Roos456e0052017-04-04 16:44:29 -0700513 mDecorColor = iconTint;
514 updateDecorColor();
515 }
516
517 private void updateDecorColor() {
518 int color = NotificationUtils.interpolateColors(mDecorColor, Color.WHITE, mDarkAmount);
519 if (mDotPaint.getColor() != color) {
520 mDotPaint.setColor(color);
521
522 if (mDotAppearAmount != 0) {
523 invalidate();
524 }
525 }
Selim Cinek49014f82016-11-04 14:55:30 -0700526 }
527
Selim Cinek875ba9b2017-02-13 16:20:17 -0800528 /**
529 * Set the static color that should be used for the drawable of this icon if it's not
530 * transitioning this also immediately sets the color.
531 */
532 public void setStaticDrawableColor(int color) {
533 mDrawableColor = color;
534 setColorInternal(color);
Lucas Dupin83519da2017-06-21 11:58:31 -0700535 updateContrastedStaticColor();
Selim Cinek875ba9b2017-02-13 16:20:17 -0800536 mIconColor = color;
Adrian Roos456e0052017-04-04 16:44:29 -0700537 mDozer.setColor(color);
Selim Cinek875ba9b2017-02-13 16:20:17 -0800538 }
539
540 private void setColorInternal(int color) {
Adrian Roosf3eacd32017-04-14 16:35:58 -0700541 mCurrentSetColor = color;
542 updateIconColor();
543 }
544
545 private void updateIconColor() {
546 if (mCurrentSetColor != NO_COLOR) {
547 setImageTintList(ColorStateList.valueOf(NotificationUtils.interpolateColors(
548 mCurrentSetColor, Color.WHITE, mDarkAmount)));
Selim Cinek875ba9b2017-02-13 16:20:17 -0800549 } else {
550 setImageTintList(null);
Adrian Roosf3eacd32017-04-14 16:35:58 -0700551 mDozer.updateGrayscale(this, mDarkAmount);
Selim Cinek875ba9b2017-02-13 16:20:17 -0800552 }
Selim Cinek875ba9b2017-02-13 16:20:17 -0800553 }
554
555 public void setIconColor(int iconColor, boolean animate) {
556 if (mIconColor != iconColor) {
557 mIconColor = iconColor;
558 if (mColorAnimator != null) {
559 mColorAnimator.cancel();
560 }
561 if (mCurrentSetColor == iconColor) {
562 return;
563 }
564 if (animate && mCurrentSetColor != NO_COLOR) {
565 mAnimationStartColor = mCurrentSetColor;
566 mColorAnimator = ValueAnimator.ofFloat(0.0f, 1.0f);
567 mColorAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
568 mColorAnimator.setDuration(ANIMATION_DURATION_FAST);
569 mColorAnimator.addUpdateListener(mColorUpdater);
570 mColorAnimator.addListener(new AnimatorListenerAdapter() {
571 @Override
572 public void onAnimationEnd(Animator animation) {
573 mColorAnimator = null;
574 mAnimationStartColor = NO_COLOR;
575 }
576 });
577 mColorAnimator.start();
578 } else {
579 setColorInternal(iconColor);
580 }
581 }
582 }
583
584 public int getStaticDrawableColor() {
585 return mDrawableColor;
586 }
587
Lucas Dupin83519da2017-06-21 11:58:31 -0700588 /**
589 * A drawable color that passes GAR on a specific background.
590 * This value is cached.
591 *
592 * @param backgroundColor Background to test against.
593 * @return GAR safe version of {@link StatusBarIconView#getStaticDrawableColor()}.
594 */
595 int getContrastedStaticDrawableColor(int backgroundColor) {
596 if (mCachedContrastBackgroundColor != backgroundColor) {
597 mCachedContrastBackgroundColor = backgroundColor;
598 updateContrastedStaticColor();
599 }
600 return mContrastedDrawableColor;
601 }
602
603 private void updateContrastedStaticColor() {
604 if (mCachedContrastBackgroundColor == NO_COLOR) {
605 return;
606 }
607 // We'll modify the color if it doesn't pass GAR
608 int contrastedColor = mDrawableColor;
609 if (!NotificationColorUtil.satisfiesTextContrast(mCachedContrastBackgroundColor,
610 contrastedColor)) {
611 float[] hsl = new float[3];
612 ColorUtils.colorToHSL(mDrawableColor, hsl);
613 // This is basically a light grey, pushing the color will only distort it.
614 // Best thing to do in here is to fallback to the default color.
615 if (hsl[1] < 0.2f) {
616 contrastedColor = Notification.COLOR_DEFAULT;
617 }
618 contrastedColor = NotificationColorUtil.resolveContrastColor(mContext,
619 contrastedColor, mCachedContrastBackgroundColor);
620 }
621 mContrastedDrawableColor = contrastedColor;
622 }
623
Selim Cinek5b5beb012016-11-08 18:11:58 -0800624 public void setVisibleState(int state) {
625 setVisibleState(state, true /* animate */, null /* endRunnable */);
626 }
627
628 public void setVisibleState(int state, boolean animate) {
629 setVisibleState(state, animate, null);
630 }
631
632 @Override
633 public boolean hasOverlappingRendering() {
634 return false;
635 }
636
637 public void setVisibleState(int visibleState, boolean animate, Runnable endRunnable) {
Selim Cinek65d418e2016-11-29 15:42:34 -0800638 boolean runnableAdded = false;
Selim Cinek49014f82016-11-04 14:55:30 -0700639 if (visibleState != mVisibleState) {
640 mVisibleState = visibleState;
Selim Cinek5ece5a72017-02-15 11:47:42 -0800641 if (mIconAppearAnimator != null) {
642 mIconAppearAnimator.cancel();
643 }
644 if (mDotAnimator != null) {
645 mDotAnimator.cancel();
646 }
Selim Cinek5b5beb012016-11-08 18:11:58 -0800647 if (animate) {
Selim Cinek5b5beb012016-11-08 18:11:58 -0800648 float targetAmount = 0.0f;
649 Interpolator interpolator = Interpolators.FAST_OUT_LINEAR_IN;
650 if (visibleState == STATE_ICON) {
651 targetAmount = 1.0f;
652 interpolator = Interpolators.LINEAR_OUT_SLOW_IN;
653 }
Selim Cinek65d418e2016-11-29 15:42:34 -0800654 float currentAmount = getIconAppearAmount();
655 if (targetAmount != currentAmount) {
656 mIconAppearAnimator = ObjectAnimator.ofFloat(this, ICON_APPEAR_AMOUNT,
657 currentAmount, targetAmount);
658 mIconAppearAnimator.setInterpolator(interpolator);
Selim Cinek875ba9b2017-02-13 16:20:17 -0800659 mIconAppearAnimator.setDuration(ANIMATION_DURATION_FAST);
Selim Cinek65d418e2016-11-29 15:42:34 -0800660 mIconAppearAnimator.addListener(new AnimatorListenerAdapter() {
661 @Override
662 public void onAnimationEnd(Animator animation) {
663 mIconAppearAnimator = null;
664 runRunnable(endRunnable);
Selim Cinek5b5beb012016-11-08 18:11:58 -0800665 }
Selim Cinek65d418e2016-11-29 15:42:34 -0800666 });
667 mIconAppearAnimator.start();
668 runnableAdded = true;
669 }
Selim Cinek49014f82016-11-04 14:55:30 -0700670
Selim Cinek5b5beb012016-11-08 18:11:58 -0800671 targetAmount = visibleState == STATE_ICON ? 2.0f : 0.0f;
672 interpolator = Interpolators.FAST_OUT_LINEAR_IN;
673 if (visibleState == STATE_DOT) {
674 targetAmount = 1.0f;
675 interpolator = Interpolators.LINEAR_OUT_SLOW_IN;
676 }
Selim Cinek65d418e2016-11-29 15:42:34 -0800677 currentAmount = getDotAppearAmount();
678 if (targetAmount != currentAmount) {
679 mDotAnimator = ObjectAnimator.ofFloat(this, DOT_APPEAR_AMOUNT,
680 currentAmount, targetAmount);
681 mDotAnimator.setInterpolator(interpolator);
Selim Cinek875ba9b2017-02-13 16:20:17 -0800682 mDotAnimator.setDuration(ANIMATION_DURATION_FAST);
Selim Cinek65d418e2016-11-29 15:42:34 -0800683 final boolean runRunnable = !runnableAdded;
684 mDotAnimator.addListener(new AnimatorListenerAdapter() {
685 @Override
686 public void onAnimationEnd(Animator animation) {
687 mDotAnimator = null;
688 if (runRunnable) {
689 runRunnable(endRunnable);
690 }
691 }
692 });
693 mDotAnimator.start();
694 runnableAdded = true;
695 }
Selim Cinek5b5beb012016-11-08 18:11:58 -0800696 } else {
697 setIconAppearAmount(visibleState == STATE_ICON ? 1.0f : 0.0f);
Selim Cinek01a73f92016-12-06 16:13:42 -0800698 setDotAppearAmount(visibleState == STATE_DOT ? 1.0f
699 : visibleState == STATE_ICON ? 2.0f
700 : 0.0f);
Selim Cinek5b5beb012016-11-08 18:11:58 -0800701 }
Selim Cinek49014f82016-11-04 14:55:30 -0700702 }
Selim Cinek65d418e2016-11-29 15:42:34 -0800703 if (!runnableAdded) {
704 runRunnable(endRunnable);
705 }
706 }
707
708 private void runRunnable(Runnable runnable) {
709 if (runnable != null) {
710 runnable.run();
711 }
Selim Cinek49014f82016-11-04 14:55:30 -0700712 }
713
Selim Cinek5b5beb012016-11-08 18:11:58 -0800714 public void setIconAppearAmount(float iconAppearAmount) {
Selim Cinek9ef119c2017-03-01 15:13:36 -0800715 if (mIconAppearAmount != iconAppearAmount) {
716 mIconAppearAmount = iconAppearAmount;
717 invalidate();
718 }
Selim Cinek49014f82016-11-04 14:55:30 -0700719 }
720
721 public float getIconAppearAmount() {
722 return mIconAppearAmount;
723 }
724
725 public int getVisibleState() {
726 return mVisibleState;
727 }
728
729 public void setDotAppearAmount(float dotAppearAmount) {
Selim Cinek9ef119c2017-03-01 15:13:36 -0800730 if (mDotAppearAmount != dotAppearAmount) {
731 mDotAppearAmount = dotAppearAmount;
732 invalidate();
733 }
Selim Cinek49014f82016-11-04 14:55:30 -0700734 }
735
Selim Cinek2b549f42016-11-22 16:38:51 -0800736 @Override
737 public void setVisibility(int visibility) {
738 super.setVisibility(visibility);
739 if (mOnVisibilityChangedListener != null) {
740 mOnVisibilityChangedListener.onVisibilityChanged(visibility);
741 }
742 }
743
Selim Cinek49014f82016-11-04 14:55:30 -0700744 public float getDotAppearAmount() {
745 return mDotAppearAmount;
746 }
Selim Cinek2b549f42016-11-22 16:38:51 -0800747
748 public void setOnVisibilityChangedListener(OnVisibilityChangedListener listener) {
749 mOnVisibilityChangedListener = listener;
750 }
751
Adrian Roos456e0052017-04-04 16:44:29 -0700752 public void setDark(boolean dark, boolean fade, long delay) {
Adrian Roos456e0052017-04-04 16:44:29 -0700753 mDozer.setIntensityDark(f -> {
754 mDarkAmount = f;
Adrian Roos138f0342017-04-28 09:11:28 -0700755 updateIconScale();
Adrian Roos456e0052017-04-04 16:44:29 -0700756 updateDecorColor();
Adrian Roosf3eacd32017-04-14 16:35:58 -0700757 updateIconColor();
Adrian Roos456e0052017-04-04 16:44:29 -0700758 }, dark, fade, delay);
759 }
760
Selim Cinek2b549f42016-11-22 16:38:51 -0800761 public interface OnVisibilityChangedListener {
762 void onVisibilityChanged(int newVisibility);
763 }
Joe Onorato0cbda992010-05-02 16:28:15 -0700764}