blob: 140340af62687d596a37ecac26457cd0785333ec [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
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 Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal14168432019-10-24 15:59:49 -070019import static com.android.launcher3.FastBitmapDrawable.newIcon;
Samuel Fufa314761a2020-10-14 10:15:07 -070020import static com.android.launcher3.graphics.IconShape.getShape;
Sunny Goyal14168432019-10-24 15:59:49 -070021import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080022import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
23
Tony4043b052018-08-17 13:47:39 -070024import android.animation.Animator;
25import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080026import android.animation.ObjectAnimator;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070027import android.animation.ValueAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070029import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070030import android.content.res.TypedArray;
Samuel Fufa314761a2020-10-14 10:15:07 -070031import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070033import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070034import android.graphics.Paint;
Samuel Fufa314761a2020-10-14 10:15:07 -070035import android.graphics.Path;
Adam Cohend9162062020-03-24 16:35:35 -070036import android.graphics.PointF;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070037import android.graphics.PorterDuff.Mode;
38import android.graphics.PorterDuffColorFilter;
Tony Wickham1237df02017-02-24 08:59:36 -080039import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070040import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.graphics.drawable.Drawable;
Samuel Fufa314761a2020-10-14 10:15:07 -070042import android.os.Process;
Sunny Goyal66dccad2018-03-19 12:00:51 -070043import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080044import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080045import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070046import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070047import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080048import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070049import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080050import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080051import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070052
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000053import androidx.annotation.Nullable;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070054import androidx.core.graphics.ColorUtils;
55
Sunny Goyal3dce5f32017-10-05 11:40:05 -070056import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070057import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Samuel Fufa314761a2020-10-14 10:15:07 -070058import com.android.launcher3.allapps.AllAppsSectionDecorator;
59import com.android.launcher3.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080060import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080061import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070062import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080063import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070064import com.android.launcher3.graphics.IconShape;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070065import com.android.launcher3.graphics.PlaceHolderIconDrawable;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080066import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080067import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080068import com.android.launcher3.icons.IconCache.IconLoadRequest;
69import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070070import com.android.launcher3.icons.LauncherIcons;
Sunny Goyale396abf2020-04-06 15:11:17 -070071import com.android.launcher3.model.data.AppInfo;
72import com.android.launcher3.model.data.ItemInfo;
73import com.android.launcher3.model.data.ItemInfoWithIcon;
74import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060075import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070076import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070077import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080078import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070079import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070080
Sunny Goyalc469aad2015-10-01 11:24:23 -070081import java.text.NumberFormat;
82
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083/**
84 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
85 * because we want to make the bubble taller than the text and TextView's clip is
86 * too aggressive.
87 */
Jon Miranda9b78e192019-08-30 18:42:01 -070088public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Samuel Fufa314761a2020-10-14 10:15:07 -070089 IconLabelDotView, DraggableView, Reorderable, AllAppsSectionDecorator.SelfDecoratingView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070090
Sunny Goyaldfaccf62015-05-11 16:30:44 -070091 private static final int DISPLAY_WORKSPACE = 0;
92 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070093 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070094 private static final int DISPLAY_HERO_APP = 5;
Tony Wickham794fe4f2021-01-11 14:54:23 -060095 protected static final int DISPLAY_TASKBAR = 6;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070096
Samuel Fufad6bacdc2020-08-23 21:56:07 -070097 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070098 private static final float HIGHLIGHT_SCALE = 1.16f;
99
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800100
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700101 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
102 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
103
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700104 private static final int ICON_UPDATE_ANIMATION_DURATION = 375;
105
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700106 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800107
Samuel Fufa314761a2020-10-14 10:15:07 -0700108 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
109 private final Path mHighlightPath = new Path();
110 protected int mHighlightColor = Color.TRANSPARENT;
111 private final BlurMaskFilter mHighlightShadowFilter;
112
Tony Wickhamf34bee82018-12-03 18:11:39 -0800113 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
114 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800115 @Override
116 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800117 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800118 }
119
120 @Override
121 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800122 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800123 bubbleTextView.invalidate();
124 }
125 };
126
Sunny Goyaled7a6932018-04-13 11:41:50 -0700127 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
128 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700129 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700130 public Float get(BubbleTextView bubbleTextView) {
131 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700132 }
133
134 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700135 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700136 bubbleTextView.setTextAlpha(alpha);
137 }
138 };
139
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800140 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700141 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800142 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700143
Tony Wickham794fe4f2021-01-11 14:54:23 -0600144 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700145
Sunny Goyaled7a6932018-04-13 11:41:50 -0700146 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700147
148 private final boolean mLayoutHorizontal;
149 private final int mIconSize;
150
151 @ViewDebug.ExportedProperty(category = "launcher")
152 private boolean mIsIconVisible = true;
153 @ViewDebug.ExportedProperty(category = "launcher")
154 private int mTextColor;
155 @ViewDebug.ExportedProperty(category = "launcher")
156 private float mTextAlpha = 1;
157
Tony4043b052018-08-17 13:47:39 -0700158 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800159 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800160 private DotRenderer mDotRenderer;
161 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
162 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800163 private Animator mDotScaleAnim;
164 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700165
Sunny Goyal4ffec482016-02-09 11:28:52 -0800166 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800167 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800168 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700169 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800170 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700171 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500172
Sunny Goyal34b65272015-03-11 16:56:52 -0700173 private IconLoadRequest mIconLoadRequest;
174
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400175 private boolean mEnableIconUpdateAnimation = false;
176
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800177 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700178 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 }
180
181 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700182 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800183 }
184
185 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
186 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800187 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700188
Adam Cohen96bb7982014-07-07 11:58:56 -0700189 TypedArray a = context.obtainStyledAttributes(attrs,
190 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800191 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700192 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700193
Samuel Fufac96fa242019-09-26 23:06:32 -0700194 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700195 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700196 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700197 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700198 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700199 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700200 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700201 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
202 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700203 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700204 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700205 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700206 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700207 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700208 } else if (mDisplay == DISPLAY_HERO_APP) {
209 defaultIconSize = grid.allAppsIconSizePx;
Tony Wickham794fe4f2021-01-11 14:54:23 -0600210 } else if (mDisplay == DISPLAY_TASKBAR) {
211 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700212 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700213 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700214 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700215 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700216
Winson1f064272016-07-18 17:18:02 -0700217 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700218
219 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
220 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700221 a.recycle();
222
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800223 mLongPressHelper = new CheckLongPressHelper(this);
224
Tony Wickham8912b042018-11-29 15:28:53 -0800225 mDotParams = new DotRenderer.DrawParams();
226
Sunny Goyal66dccad2018-03-19 12:00:51 -0700227 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700228 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700229 setTextAlpha(1f);
Samuel Fufa314761a2020-10-14 10:15:07 -0700230
231 int shadowSize = context.getResources().getDimensionPixelSize(
232 R.dimen.blur_size_click_shadow);
233 mHighlightShadowFilter = new BlurMaskFilter(shadowSize, BlurMaskFilter.Blur.INNER);
234
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800235 }
236
Sunny Goyal66dccad2018-03-19 12:00:51 -0700237 @Override
238 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
239 // Disable marques when not focused to that, so that updating text does not cause relayout.
240 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
241 super.onFocusChanged(focused, direction, previouslyFocusedRect);
242 }
243
Jon Miranda52549442017-10-26 11:28:06 -0700244 /**
245 * Resets the view so it can be recycled.
246 */
247 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800248 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800249 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800250 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800251 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800252 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800253 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700254 }
255
Tony Wickhamf34bee82018-12-03 18:11:39 -0800256 private void cancelDotScaleAnim() {
257 if (mDotScaleAnim != null) {
258 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700259 }
260 }
261
Tony Wickhamf34bee82018-12-03 18:11:39 -0800262 private void animateDotScale(float... dotScales) {
263 cancelDotScaleAnim();
264 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
265 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700266 @Override
267 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800268 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700269 }
270 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800271 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700272 }
273
Sunny Goyal95899162019-03-27 16:03:06 -0700274 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
275 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700276 }
277
Adam Cohen29794c52019-06-21 12:50:30 -0700278 @Override
279 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
280 if (delegate instanceof LauncherAccessibilityDelegate) {
281 super.setAccessibilityDelegate(delegate);
282 } else {
283 // NO-OP
284 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
285 // delegate incorrectly. There are no cases when we shouldn't be using the
286 // LauncherAccessibilityDelegate for BubbleTextView.
287 }
288 }
289
Sunny Goyal95899162019-03-27 16:03:06 -0700290 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800291 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800292 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000293 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800294 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800295 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800296 }
297
Sunny Goyal508da152014-08-14 10:53:27 -0700298 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800299 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700300
Sunny Goyal95899162019-03-27 16:03:06 -0700301 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700302 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700303
304 // Verify high res immediately
305 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800306
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000307 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800308 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700309 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800310 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800311 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700312 }
313
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700314 /**
315 * Apply label and tag using a generic {@link ItemInfoWithIcon}
316 */
317 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800318 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700319 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700320 super.setTag(info);
321
322 // Verify high res immediately
323 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800324
325 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700326 }
327
Samuel Fufa02be2a42020-09-23 00:45:27 -0700328 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600329 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700330 */
Samuel Fufac2820182021-01-22 11:47:25 -0600331 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
332 applyIconAndLabel(searchActionItemInfo);
333 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700334 }
335
Samuel Fufac2820182021-01-22 11:47:25 -0600336 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700337 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700338 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800339
Sunny Goyalf4204382016-07-13 10:46:07 -0700340 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000341 applyLabel(info);
342 }
343
344 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700345 setText(info.title);
346 if (info.contentDescription != null) {
347 setContentDescription(info.isDisabled()
348 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
349 : info.contentDescription);
350 }
351 }
352
Winson Chung7501adf2015-06-02 11:24:28 -0700353 /**
354 * Overrides the default long press timeout.
355 */
Tony2ca999c2018-09-24 17:24:51 -0400356 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
357 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700358 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700359
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800360 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800361 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700362 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800363 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800364 }
Sunny Goyal508da152014-08-14 10:53:27 -0700365 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800366
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800367 @Override
368 protected int[] onCreateDrawableState(int extraSpace) {
369 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
370 if (mStayPressed) {
371 mergeDrawableStates(drawableState, STATE_PRESSED);
372 }
373 return drawableState;
374 }
375
Winson Chungb745afb2015-03-02 11:51:23 -0800376 /** Returns the icon for this view. */
377 public Drawable getIcon() {
378 return mIcon;
379 }
380
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700381 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800382 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700383 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700384 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700385 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700386 return false;
387 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700388 if (isLongClickable()) {
389 super.onTouchEvent(event);
390 mLongPressHelper.onTouchEvent(event);
391 // Keep receiving the rest of the events
392 return true;
393 } else {
394 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700395 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800396 }
397
Sunny Goyal44a3b202020-07-09 08:27:06 -0700398 /**
399 * Returns true if the touch down at the provided position be ignored
400 */
401 protected boolean shouldIgnoreTouchDown(float x, float y) {
402 return y < getPaddingTop()
403 || x < getPaddingLeft()
404 || y > getHeight() - getPaddingBottom()
405 || x > getWidth() - getPaddingRight();
406 }
407
Michael Jurkaddd62e92011-02-16 17:49:14 -0800408 void setStayPressed(boolean stayPressed) {
409 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800410 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800411 }
412
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700413 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800414 public void onVisibilityAggregated(boolean isVisible) {
415 super.onVisibilityAggregated(isVisible);
416 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800417 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800418 }
419 }
420
421 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700422 public void onLauncherResume() {
423 // Reset the pressed state of icon that was locked in the press state while activity
424 // was launching
425 setStayPressed(false);
426 }
427
Sunny Goyal508da152014-08-14 10:53:27 -0700428 void clearPressedBackground() {
429 setPressed(false);
430 setStayPressed(false);
431 }
432
433 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700434 public boolean onKeyUp(int keyCode, KeyEvent event) {
435 // Unlike touch events, keypress event propagate pressed state change immediately,
436 // without waiting for onClickHandler to execute. Disable pressed state changes here
437 // to avoid flickering.
438 mIgnorePressedStateChange = true;
439 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700440 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800441 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700442 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800443 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800444
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700445 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800446 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700447 super.onDraw(canvas);
448 }
449
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800450 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700451 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700452 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
453 int count = canvas.save();
454 drawFocusHighlight(canvas);
455 canvas.restoreToCount(count);
456 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700457 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800458 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700459 }
460
461 protected void drawFocusHighlight(Canvas canvas) {
462 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
463 ((ItemInfo) getTag()).user);
464 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
465 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
466 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
467 mHighlightPath.reset();
468 mHighlightPaint.reset();
469 getIconBounds(mDotParams.iconBounds);
470 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
471 outlineSize / 2);
472 if (isBadged) {
473 float borderSize = outlineSize - getIconSize();
474 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
475 float badgeInset = outlineSize - badgeSize;
476 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
477 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
478 }
479 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
480 mHighlightPaint.setColor(mDotParams.color);
481 canvas.drawPath(mHighlightPath, mHighlightPaint);
482 mHighlightPaint.setMaskFilter(null);
483 mHighlightPaint.setColor(mHighlightColor);
484 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800485 }
486
487 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800488 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700489 *
Tony Wickham1237df02017-02-24 08:59:36 -0800490 * @param canvas The canvas to draw to.
491 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800492 protected void drawDotIfNecessary(Canvas canvas) {
Tony Wickham794fe4f2021-01-11 14:54:23 -0600493 if (mDisplay == DISPLAY_TASKBAR) {
494 // TODO: support notification dots in Taskbar
495 return;
496 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800497 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800498 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700499 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
500 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800501 final int scrollX = getScrollX();
502 final int scrollY = getScrollY();
503 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800504 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800505 canvas.translate(-scrollX, -scrollY);
506 }
507 }
508
Jon Miranda9b78e192019-08-30 18:42:01 -0700509 @Override
510 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800511 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800512 return;
513 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800514 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800515
Tony Wickhamf34bee82018-12-03 18:11:39 -0800516 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800517 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800518 } else if (hasDot()) {
519 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800520 }
521 }
522
Tony Wickhamf34bee82018-12-03 18:11:39 -0800523 private boolean hasDot() {
524 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800525 }
526
527 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700528 getIconBounds(this, outBounds, mIconSize);
529 }
530
531 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
532 int top = iconView.getPaddingTop();
533 int left = (iconView.getWidth() - iconSize) / 2;
534 int right = left + iconSize;
535 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800536 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800537 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400538
539 @Override
Winson1f064272016-07-18 17:18:02 -0700540 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
541 if (mCenterVertically) {
542 Paint.FontMetrics fm = getPaint().getFontMetrics();
543 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
544 (int) Math.ceil(fm.bottom - fm.top);
545 int height = MeasureSpec.getSize(heightMeasureSpec);
546 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
547 getPaddingBottom());
548 }
549 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
550 }
551
552 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700553 public void setTextColor(int color) {
554 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700555 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700556 }
557
Adam Cohen96bb7982014-07-07 11:58:56 -0700558 @Override
559 public void setTextColor(ColorStateList colors) {
560 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700561 if (Float.compare(mTextAlpha, 1) == 0) {
562 super.setTextColor(colors);
563 } else {
564 super.setTextColor(getModifiedColor());
565 }
Adam Cohen477828c2013-09-20 12:05:49 -0700566 }
567
Tony7308cde2017-06-27 22:38:33 -0700568 public boolean shouldTextBeVisible() {
569 // Text should be visible everywhere but the hotseat.
570 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
571 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700572 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
573 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700574 }
575
Winson Chung5f8afe62013-08-12 16:19:28 -0700576 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700577 setTextAlpha(visible ? 1 : 0);
578 }
579
580 private void setTextAlpha(float alpha) {
581 mTextAlpha = alpha;
582 super.setTextColor(getModifiedColor());
583 }
584
585 private int getModifiedColor() {
586 if (mTextAlpha == 0) {
587 // Special case to prevent text shadows in high contrast mode
588 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700589 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800590 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700591 }
592
593 /**
594 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700595 *
Tony8f402802017-06-16 17:24:54 -0700596 * @param fadeIn Whether the text should fade in or fade out.
597 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700598 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700599 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700600 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700601 }
602
Winson Chungaffd7b42010-08-20 15:11:56 -0700603 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800604 public void cancelLongPress() {
605 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800606 mLongPressHelper.cancelLongPress();
607 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500608
Samuel Fufac2820182021-01-22 11:47:25 -0600609 /**
610 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000611 *
612 * If this app is installing, the progress bar will be updated with the installation progress.
613 * If this app is installed and downloading incrementally, the progress bar will be updated
614 * with the total download progress.
615 */
616 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800617 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700618 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000619 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
620 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800621 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000622 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800623 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
624 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700625 }
626 }
627 }
628
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800629 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
630 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000631 if (preloadDrawable != null && maybePerformFinishedAnimation) {
632 preloadDrawable.maybePerformFinishedAnimation();
633 }
634 }
635
636 /** Applies the given progress level to the this icon's progress bar. */
637 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800638 public PreloadIconDrawable applyProgressLevel() {
639 if (!(getTag() instanceof ItemInfoWithIcon)) {
640 return null;
641 }
642
643 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
644 int progressLevel = info.getProgressLevel();
645 if (progressLevel >= 100) {
646 setContentDescription(info.contentDescription != null
647 ? info.contentDescription : "");
648 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800649 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800650 } else {
651 setContentDescription(getContext()
652 .getString(R.string.app_waiting_download_title, info.title));
653 }
654 if (mIcon != null) {
655 PreloadIconDrawable preloadIconDrawable;
656 if (mIcon instanceof PreloadIconDrawable) {
657 preloadIconDrawable = (PreloadIconDrawable) mIcon;
658 preloadIconDrawable.setLevel(progressLevel);
659 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700660 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800661 preloadIconDrawable = makePreloadIcon();
662 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700663 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800664 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400665 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700666 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400667 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700668
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800669 /**
670 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
671 * object.
672 */
673 @Nullable
674 public PreloadIconDrawable makePreloadIcon() {
675 if (!(getTag() instanceof ItemInfoWithIcon)) {
676 return null;
677 }
678
679 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
680 int progressLevel = info.getProgressLevel();
681 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
682
683 preloadDrawable.setLevel(progressLevel);
684 preloadDrawable.setIsDisabled(!info.isAppStartable());
685
686 return preloadDrawable;
687 }
688
Tony Wickhamf34bee82018-12-03 18:11:39 -0800689 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800690 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800691 boolean wasDotted = mDotInfo != null;
692 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
693 boolean isDotted = mDotInfo != null;
694 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700695 if (mDisplay == DISPLAY_ALL_APPS) {
696 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
697 } else {
698 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
699 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800700 if (wasDotted || isDotted) {
701 // Animate when a dot is first added or when it is removed.
702 if (animate && (wasDotted ^ isDotted) && isShown()) {
703 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800704 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800705 cancelDotScaleAnim();
706 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800707 invalidate();
708 }
709 }
Tony Wickham305e9202018-01-23 17:46:47 -0800710 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700711 if (itemInfo.isDisabled()) {
712 setContentDescription(getContext().getString(R.string.disabled_app_label,
713 itemInfo.contentDescription));
714 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800715 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800716 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800717 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800718 } else {
719 setContentDescription(itemInfo.contentDescription);
720 }
721 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800722 }
723 }
724
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800725 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
726 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
727 != 0) {
728 String percentageString = NumberFormat.getPercentInstance()
729 .format(progressLevel * 0.01);
730 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
731 setContentDescription(getContext()
732 .getString(
733 R.string.app_installing_title, info.title, percentageString));
734 } else if ((info.runtimeStatusFlags
735 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
736 setContentDescription(getContext()
737 .getString(
738 R.string.app_downloading_title, info.title, percentageString));
739 }
740 }
741 }
742
Winson Chungb745afb2015-03-02 11:51:23 -0800743 /**
744 * Sets the icon for this view based on the layout direction.
745 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700746 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700747 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700748 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700749 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700750 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800751 if (mIcon != null) {
752 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
753 }
Tony17b7f9b2017-05-23 12:19:09 -0700754 }
755
Jon Miranda9b78e192019-08-30 18:42:01 -0700756 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700757 public void setIconVisible(boolean visible) {
758 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700759 if (!mIsIconVisible) {
760 resetIconScale();
761 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700762 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700763 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700764 }
765
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400766 protected boolean iconUpdateAnimationEnabled() {
767 return mEnableIconUpdateAnimation;
768 }
769
Tony Wickham377ed3f2016-07-20 15:21:04 -0700770 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700771 // If we had already set an icon before, disable relayout as the icon size is the
772 // same as before.
773 mDisableRelayout = mIcon != null;
774
775 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700776
777 updateIcon(icon);
778
779 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400780 if (mIcon != null
781 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400782 && iconUpdateAnimationEnabled()) {
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700783 animateIconUpdate((PlaceHolderIconDrawable) mIcon, icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800784 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700785
Sunny Goyal66dccad2018-03-19 12:00:51 -0700786 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800787 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700788
Sunny Goyal69b75642015-05-15 17:00:24 -0700789 @Override
790 public void requestLayout() {
791 if (!mDisableRelayout) {
792 super.requestLayout();
793 }
794 }
795
Sunny Goyal34b65272015-03-11 16:56:52 -0700796 /**
797 * Applies the item info if it is same as what the view is pointing to currently.
798 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800799 @Override
800 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700801 if (getTag() == info) {
802 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700803 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400804 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700805
Jon Miranda7f522a22017-07-28 11:56:47 -0700806 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700807 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700808
Sunny Goyal34b65272015-03-11 16:56:52 -0700809 if (info instanceof AppInfo) {
810 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700811 } else if (info instanceof WorkspaceItemInfo) {
812 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700813 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700814 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700815 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600816 } else if (info instanceof SearchActionItemInfo) {
817 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700818 }
Winsonc0880492015-08-21 11:16:27 -0700819
Sunny Goyal69b75642015-05-15 17:00:24 -0700820 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400821 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700822 }
823 }
824
825 /**
826 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
827 */
828 public void verifyHighRes() {
829 if (mIconLoadRequest != null) {
830 mIconLoadRequest.cancel();
831 mIconLoadRequest = null;
832 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800833 if (getTag() instanceof ItemInfoWithIcon) {
834 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700835 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800836 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700837 .updateIconInBackground(BubbleTextView.this, info);
838 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700839 }
840 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700841
Jon Miranda47170112017-03-03 14:57:14 -0800842 public int getIconSize() {
843 return mIconSize;
844 }
Adam Cohen65086992020-02-19 08:40:49 -0800845
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700846 private void updateTranslation() {
847 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
848 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700849 }
850
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700851 public void setReorderBounceOffset(float x, float y) {
852 mTranslationForReorderBounce.set(x, y);
853 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700854 }
855
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700856 public void getReorderBounceOffset(PointF offset) {
857 offset.set(mTranslationForReorderBounce);
858 }
859
860 @Override
861 public void setReorderPreviewOffset(float x, float y) {
862 mTranslationForReorderPreview.set(x, y);
863 updateTranslation();
864 }
865
866 @Override
867 public void getReorderPreviewOffset(PointF offset) {
868 offset.set(mTranslationForReorderPreview);
869 }
870
871 public void setReorderBounceScale(float scale) {
872 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700873 super.setScaleX(scale);
874 super.setScaleY(scale);
875 }
876
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700877 public float getReorderBounceScale() {
878 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700879 }
880
881 public View getView() {
882 return this;
883 }
884
Adam Cohen65086992020-02-19 08:40:49 -0800885 @Override
886 public int getViewType() {
887 return DRAGGABLE_ICON;
888 }
889
890 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700891 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800892 DeviceProfile grid = mActivity.getDeviceProfile();
893 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
894 }
895
Adam Cohenc77bc452020-05-07 11:55:19 -0700896 private int getIconSizeForDisplay(int display) {
897 DeviceProfile grid = mActivity.getDeviceProfile();
898 switch (display) {
899 case DISPLAY_ALL_APPS:
900 return grid.allAppsIconSizePx;
901 case DISPLAY_WORKSPACE:
902 case DISPLAY_FOLDER:
903 default:
904 return grid.iconSizePx;
905 }
906 }
907
908 public void getSourceVisualDragBounds(Rect bounds) {
909 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
910 }
911
Adam Cohen65086992020-02-19 08:40:49 -0800912 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700913 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700914 int highlightColor = mHighlightColor;
915 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700916 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800917 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700918 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800919 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700920
921 private void resetIconScale() {
922 if (mIcon instanceof FastBitmapDrawable) {
923 ((FastBitmapDrawable) mIcon).setScale(1f);
924 }
925 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700926
927 private void updateIcon(Drawable newIcon) {
928 if (mLayoutHorizontal) {
929 setCompoundDrawablesRelative(newIcon, null, null, null);
930 } else {
931 setCompoundDrawables(null, newIcon, null, null);
932 }
933 }
934
935 private static void animateIconUpdate(PlaceHolderIconDrawable oldIcon, Drawable newIcon) {
936 int placeholderColor = oldIcon.mPaint.getColor();
937 int originalAlpha = Color.alpha(placeholderColor);
938
939 ValueAnimator iconUpdateAnimation = ValueAnimator.ofInt(originalAlpha, 0);
940 iconUpdateAnimation.setDuration(ICON_UPDATE_ANIMATION_DURATION);
941 iconUpdateAnimation.addUpdateListener(valueAnimator -> {
942 int newAlpha = (int) valueAnimator.getAnimatedValue();
943 int newColor = ColorUtils.setAlphaComponent(placeholderColor, newAlpha);
944
945 newIcon.setColorFilter(new PorterDuffColorFilter(newColor, Mode.SRC_ATOP));
946 });
947 iconUpdateAnimation.addListener(new AnimatorListenerAdapter() {
948 @Override
949 public void onAnimationEnd(Animator animation) {
950 newIcon.setColorFilter(null);
951 }
952 });
953 iconUpdateAnimation.start();
954 }
Samuel Fufa314761a2020-10-14 10:15:07 -0700955
956
957 @Override
958 public void decorate(int color) {
959 mHighlightColor = color;
960 invalidate();
961 }
962
963 @Override
964 public void removeDecoration() {
965 mHighlightColor = Color.TRANSPARENT;
966 invalidate();
967 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800968}