blob: d333b49a3aa2f1bcd40e264d3dc9ea7eca0eebab [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
Samuel Fufa314761a2020-10-14 10:15:07 -070019import static com.android.launcher3.graphics.IconShape.getShape;
Sunny Goyal14168432019-10-24 15:59:49 -070020import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080021import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
22
Tony4043b052018-08-17 13:47:39 -070023import android.animation.Animator;
24import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080025import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070027import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070028import android.content.res.TypedArray;
Samuel Fufa314761a2020-10-14 10:15:07 -070029import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070031import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070032import android.graphics.Paint;
Samuel Fufa314761a2020-10-14 10:15:07 -070033import android.graphics.Path;
Adam Cohend9162062020-03-24 16:35:35 -070034import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080035import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070036import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037import android.graphics.drawable.Drawable;
Samuel Fufa314761a2020-10-14 10:15:07 -070038import android.os.Process;
Sunny Goyal66dccad2018-03-19 12:00:51 -070039import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080040import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080041import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070042import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070043import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080044import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070045import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080046import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080047import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070048
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000049import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080050import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070051
Adam Cohen29794c52019-06-21 12:50:30 -070052import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Samuel Fufa314761a2020-10-14 10:15:07 -070053import com.android.launcher3.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080054import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080055import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070056import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080057import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070058import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080059import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080060import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070061import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080062import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070063import com.android.launcher3.icons.LauncherIcons;
Sunny Goyal572aca42021-03-24 15:21:39 -070064import com.android.launcher3.icons.PlaceHolderIconDrawable;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080065import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070066import com.android.launcher3.model.data.AppInfo;
67import com.android.launcher3.model.data.ItemInfo;
68import com.android.launcher3.model.data.ItemInfoWithIcon;
69import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060070import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070071import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070072import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080073import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070074import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070075
Sunny Goyalc469aad2015-10-01 11:24:23 -070076import java.text.NumberFormat;
77
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078/**
79 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
80 * because we want to make the bubble taller than the text and TextView's clip is
81 * too aggressive.
82 */
Sunny Goyalb65d7662021-03-07 15:09:11 -080083public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080084 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070085
Sunny Goyaldfaccf62015-05-11 16:30:44 -070086 private static final int DISPLAY_WORKSPACE = 0;
87 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070088 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070089 private static final int DISPLAY_HERO_APP = 5;
Tony Wickham794fe4f2021-01-11 14:54:23 -060090 protected static final int DISPLAY_TASKBAR = 6;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070091
Samuel Fufad6bacdc2020-08-23 21:56:07 -070092 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070093 private static final float HIGHLIGHT_SCALE = 1.16f;
94
Adam Cohen1d13c0b2020-04-21 16:29:12 -070095 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
96 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
97
98 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080099
Samuel Fufa314761a2020-10-14 10:15:07 -0700100 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
101 private final Path mHighlightPath = new Path();
102 protected int mHighlightColor = Color.TRANSPARENT;
103 private final BlurMaskFilter mHighlightShadowFilter;
104
Tony Wickhamf34bee82018-12-03 18:11:39 -0800105 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
106 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800107 @Override
108 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800109 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800110 }
111
112 @Override
113 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800114 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800115 bubbleTextView.invalidate();
116 }
117 };
118
Sunny Goyaled7a6932018-04-13 11:41:50 -0700119 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
120 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700121 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122 public Float get(BubbleTextView bubbleTextView) {
123 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700124 }
125
126 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700127 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700128 bubbleTextView.setTextAlpha(alpha);
129 }
130 };
131
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800132 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700133 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800134 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700135
Tony Wickham794fe4f2021-01-11 14:54:23 -0600136 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700137
Sunny Goyaled7a6932018-04-13 11:41:50 -0700138 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700139
140 private final boolean mLayoutHorizontal;
141 private final int mIconSize;
142
143 @ViewDebug.ExportedProperty(category = "launcher")
144 private boolean mIsIconVisible = true;
145 @ViewDebug.ExportedProperty(category = "launcher")
146 private int mTextColor;
147 @ViewDebug.ExportedProperty(category = "launcher")
148 private float mTextAlpha = 1;
149
Tony4043b052018-08-17 13:47:39 -0700150 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800151 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800152 private DotRenderer mDotRenderer;
153 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
154 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800155 private Animator mDotScaleAnim;
156 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700157
Sunny Goyal4ffec482016-02-09 11:28:52 -0800158 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800159 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800160 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700161 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800162 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700163 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500164
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800165 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700166
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400167 private boolean mEnableIconUpdateAnimation = false;
168
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700170 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800171 }
172
173 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700174 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 }
176
177 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
178 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800179 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700180
Adam Cohen96bb7982014-07-07 11:58:56 -0700181 TypedArray a = context.obtainStyledAttributes(attrs,
182 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800183 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700184 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700185
Samuel Fufac96fa242019-09-26 23:06:32 -0700186 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700187 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700188 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700189 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700190 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700191 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500192 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700193 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700194 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
195 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700196 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700197 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700198 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700199 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700200 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700201 } else if (mDisplay == DISPLAY_HERO_APP) {
202 defaultIconSize = grid.allAppsIconSizePx;
Tony Wickham794fe4f2021-01-11 14:54:23 -0600203 } else if (mDisplay == DISPLAY_TASKBAR) {
204 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700205 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700206 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700207 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700208 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700209
Winson1f064272016-07-18 17:18:02 -0700210 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700211
212 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
213 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700214 a.recycle();
215
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800216 mLongPressHelper = new CheckLongPressHelper(this);
217
Tony Wickham8912b042018-11-29 15:28:53 -0800218 mDotParams = new DotRenderer.DrawParams();
219
Sunny Goyal66dccad2018-03-19 12:00:51 -0700220 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700221 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700222 setTextAlpha(1f);
Samuel Fufa314761a2020-10-14 10:15:07 -0700223
224 int shadowSize = context.getResources().getDimensionPixelSize(
225 R.dimen.blur_size_click_shadow);
226 mHighlightShadowFilter = new BlurMaskFilter(shadowSize, BlurMaskFilter.Blur.INNER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800227 }
228
Sunny Goyal66dccad2018-03-19 12:00:51 -0700229 @Override
230 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
231 // Disable marques when not focused to that, so that updating text does not cause relayout.
232 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
233 super.onFocusChanged(focused, direction, previouslyFocusedRect);
234 }
235
Jon Miranda52549442017-10-26 11:28:06 -0700236 /**
237 * Resets the view so it can be recycled.
238 */
239 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800240 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800241 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800242 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800243 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800244 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800245 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700246 }
247
Tony Wickhamf34bee82018-12-03 18:11:39 -0800248 private void cancelDotScaleAnim() {
249 if (mDotScaleAnim != null) {
250 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700251 }
252 }
253
Tony Wickhamf34bee82018-12-03 18:11:39 -0800254 private void animateDotScale(float... dotScales) {
255 cancelDotScaleAnim();
256 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
257 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700258 @Override
259 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800260 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700261 }
262 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800263 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700264 }
265
Hyunyoung Song5809a402021-02-02 01:19:18 -0800266 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700267 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
268 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700269 }
270
Adam Cohen29794c52019-06-21 12:50:30 -0700271 @Override
272 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
273 if (delegate instanceof LauncherAccessibilityDelegate) {
274 super.setAccessibilityDelegate(delegate);
275 } else {
276 // NO-OP
277 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
278 // delegate incorrectly. There are no cases when we shouldn't be using the
279 // LauncherAccessibilityDelegate for BubbleTextView.
280 }
281 }
282
Hyunyoung Song5809a402021-02-02 01:19:18 -0800283 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700284 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800285 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800286 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000287 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800288 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800289 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800290 }
291
Hyunyoung Song5809a402021-02-02 01:19:18 -0800292 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700293 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800294 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700295
Sunny Goyal95899162019-03-27 16:03:06 -0700296 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700297 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700298
299 // Verify high res immediately
300 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800301
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000302 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800303 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700304 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800305 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800306 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700307 }
308
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700309 /**
310 * Apply label and tag using a generic {@link ItemInfoWithIcon}
311 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800312 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700313 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800314 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700315 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700316 super.setTag(info);
317
318 // Verify high res immediately
319 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800320
321 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700322 }
323
Samuel Fufa02be2a42020-09-23 00:45:27 -0700324 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600325 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700326 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800327 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600328 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
329 applyIconAndLabel(searchActionItemInfo);
330 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700331 }
332
Hyunyoung Song5809a402021-02-02 01:19:18 -0800333 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600334 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal572aca42021-03-24 15:21:39 -0700335 FastBitmapDrawable iconDrawable = info.newIcon(getContext());
Sunny Goyal3808a692019-10-25 13:41:28 -0700336 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800337
Sunny Goyalf4204382016-07-13 10:46:07 -0700338 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000339 applyLabel(info);
340 }
341
Hyunyoung Song5809a402021-02-02 01:19:18 -0800342 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000343 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700344 setText(info.title);
345 if (info.contentDescription != null) {
346 setContentDescription(info.isDisabled()
347 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
348 : info.contentDescription);
349 }
350 }
351
Winson Chung7501adf2015-06-02 11:24:28 -0700352 /**
Tony Wickhamaaa42bd2021-01-27 16:27:15 -0800353 * Directly set the icon and label.
354 */
355 @UiThread
356 public void applyIconAndLabel(Drawable icon, CharSequence label) {
357 setIcon(icon);
358 setText(label);
359 setContentDescription(label);
360 }
361
362 /**
Winson Chung7501adf2015-06-02 11:24:28 -0700363 * Overrides the default long press timeout.
364 */
Tony2ca999c2018-09-24 17:24:51 -0400365 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
366 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700367 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700368
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800369 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800370 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700371 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800372 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800373 }
Sunny Goyal508da152014-08-14 10:53:27 -0700374 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800375
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800376 @Override
377 protected int[] onCreateDrawableState(int extraSpace) {
378 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
379 if (mStayPressed) {
380 mergeDrawableStates(drawableState, STATE_PRESSED);
381 }
382 return drawableState;
383 }
384
Winson Chungb745afb2015-03-02 11:51:23 -0800385 /** Returns the icon for this view. */
386 public Drawable getIcon() {
387 return mIcon;
388 }
389
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700390 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800391 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700392 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700393 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700394 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700395 return false;
396 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700397 if (isLongClickable()) {
398 super.onTouchEvent(event);
399 mLongPressHelper.onTouchEvent(event);
400 // Keep receiving the rest of the events
401 return true;
402 } else {
403 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700404 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800405 }
406
Sunny Goyal44a3b202020-07-09 08:27:06 -0700407 /**
408 * Returns true if the touch down at the provided position be ignored
409 */
410 protected boolean shouldIgnoreTouchDown(float x, float y) {
411 return y < getPaddingTop()
412 || x < getPaddingLeft()
413 || y > getHeight() - getPaddingBottom()
414 || x > getWidth() - getPaddingRight();
415 }
416
Michael Jurkaddd62e92011-02-16 17:49:14 -0800417 void setStayPressed(boolean stayPressed) {
418 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800419 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800420 }
421
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700422 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800423 public void onVisibilityAggregated(boolean isVisible) {
424 super.onVisibilityAggregated(isVisible);
425 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800426 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800427 }
428 }
429
Sunny Goyal508da152014-08-14 10:53:27 -0700430 void clearPressedBackground() {
431 setPressed(false);
432 setStayPressed(false);
433 }
434
435 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700436 public boolean onKeyUp(int keyCode, KeyEvent event) {
437 // Unlike touch events, keypress event propagate pressed state change immediately,
438 // without waiting for onClickHandler to execute. Disable pressed state changes here
439 // to avoid flickering.
440 mIgnorePressedStateChange = true;
441 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700442 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800443 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700444 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800445 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800446
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700447 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800448 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700449 super.onDraw(canvas);
450 }
451
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700453 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700454 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
455 int count = canvas.save();
456 drawFocusHighlight(canvas);
457 canvas.restoreToCount(count);
458 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700459 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800460 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700461 }
462
463 protected void drawFocusHighlight(Canvas canvas) {
464 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
465 ((ItemInfo) getTag()).user);
466 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
467 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
468 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
469 mHighlightPath.reset();
470 mHighlightPaint.reset();
471 getIconBounds(mDotParams.iconBounds);
472 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
473 outlineSize / 2);
474 if (isBadged) {
475 float borderSize = outlineSize - getIconSize();
476 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
477 float badgeInset = outlineSize - badgeSize;
478 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
479 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
480 }
481 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
482 mHighlightPaint.setColor(mDotParams.color);
483 canvas.drawPath(mHighlightPath, mHighlightPaint);
484 mHighlightPaint.setMaskFilter(null);
485 mHighlightPaint.setColor(mHighlightColor);
486 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800487 }
488
489 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800490 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700491 *
Tony Wickham1237df02017-02-24 08:59:36 -0800492 * @param canvas The canvas to draw to.
493 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800494 protected void drawDotIfNecessary(Canvas canvas) {
Tony Wickham7ba547c2021-02-02 17:12:08 -0800495 if (mActivity instanceof Launcher && ((Launcher) mActivity).isViewInTaskbar(this)) {
Tony Wickham794fe4f2021-01-11 14:54:23 -0600496 // TODO: support notification dots in Taskbar
497 return;
498 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800499 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800500 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700501 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
502 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800503 final int scrollX = getScrollX();
504 final int scrollY = getScrollY();
505 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800506 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800507 canvas.translate(-scrollX, -scrollY);
508 }
509 }
510
Jon Miranda9b78e192019-08-30 18:42:01 -0700511 @Override
512 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800513 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800514 return;
515 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800516 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800517
Tony Wickhamf34bee82018-12-03 18:11:39 -0800518 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800519 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800520 } else if (hasDot()) {
521 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800522 }
523 }
524
Tony Wickhamf34bee82018-12-03 18:11:39 -0800525 private boolean hasDot() {
526 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800527 }
528
529 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700530 getIconBounds(this, outBounds, mIconSize);
531 }
532
533 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
534 int top = iconView.getPaddingTop();
535 int left = (iconView.getWidth() - iconSize) / 2;
536 int right = left + iconSize;
537 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800538 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800539 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400540
Jon Miranda228877d2021-02-09 11:05:00 -0500541
542 /**
543 * Sets whether to vertically center the content.
544 */
545 public void setCenterVertically(boolean centerVertically) {
546 mCenterVertically = centerVertically;
547 }
548
Joe Onorato9c1289c2009-08-17 11:03:03 -0400549 @Override
Winson1f064272016-07-18 17:18:02 -0700550 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
551 if (mCenterVertically) {
552 Paint.FontMetrics fm = getPaint().getFontMetrics();
553 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
554 (int) Math.ceil(fm.bottom - fm.top);
555 int height = MeasureSpec.getSize(heightMeasureSpec);
556 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
557 getPaddingBottom());
558 }
559 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
560 }
561
562 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700563 public void setTextColor(int color) {
564 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700565 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700566 }
567
Adam Cohen96bb7982014-07-07 11:58:56 -0700568 @Override
569 public void setTextColor(ColorStateList colors) {
570 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700571 if (Float.compare(mTextAlpha, 1) == 0) {
572 super.setTextColor(colors);
573 } else {
574 super.setTextColor(getModifiedColor());
575 }
Adam Cohen477828c2013-09-20 12:05:49 -0700576 }
577
Tony7308cde2017-06-27 22:38:33 -0700578 public boolean shouldTextBeVisible() {
579 // Text should be visible everywhere but the hotseat.
580 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
581 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700582 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
583 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700584 }
585
Winson Chung5f8afe62013-08-12 16:19:28 -0700586 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700587 setTextAlpha(visible ? 1 : 0);
588 }
589
590 private void setTextAlpha(float alpha) {
591 mTextAlpha = alpha;
592 super.setTextColor(getModifiedColor());
593 }
594
595 private int getModifiedColor() {
596 if (mTextAlpha == 0) {
597 // Special case to prevent text shadows in high contrast mode
598 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700599 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800600 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700601 }
602
603 /**
604 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700605 *
Tony8f402802017-06-16 17:24:54 -0700606 * @param fadeIn Whether the text should fade in or fade out.
607 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700608 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700609 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700610 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700611 }
612
Winson Chungaffd7b42010-08-20 15:11:56 -0700613 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800614 public void cancelLongPress() {
615 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800616 mLongPressHelper.cancelLongPress();
617 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500618
Samuel Fufac2820182021-01-22 11:47:25 -0600619 /**
620 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000621 *
622 * If this app is installing, the progress bar will be updated with the installation progress.
623 * If this app is installed and downloading incrementally, the progress bar will be updated
624 * with the total download progress.
625 */
626 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800627 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700628 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000629 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
630 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800631 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000632 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800633 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
634 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700635 }
636 }
637 }
638
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800639 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
640 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000641 if (preloadDrawable != null && maybePerformFinishedAnimation) {
642 preloadDrawable.maybePerformFinishedAnimation();
643 }
644 }
645
646 /** Applies the given progress level to the this icon's progress bar. */
647 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800648 public PreloadIconDrawable applyProgressLevel() {
649 if (!(getTag() instanceof ItemInfoWithIcon)) {
650 return null;
651 }
652
653 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
654 int progressLevel = info.getProgressLevel();
655 if (progressLevel >= 100) {
656 setContentDescription(info.contentDescription != null
657 ? info.contentDescription : "");
658 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800659 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800660 } else {
661 setContentDescription(getContext()
662 .getString(R.string.app_waiting_download_title, info.title));
663 }
664 if (mIcon != null) {
665 PreloadIconDrawable preloadIconDrawable;
666 if (mIcon instanceof PreloadIconDrawable) {
667 preloadIconDrawable = (PreloadIconDrawable) mIcon;
668 preloadIconDrawable.setLevel(progressLevel);
669 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700670 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800671 preloadIconDrawable = makePreloadIcon();
672 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700673 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800674 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400675 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700676 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400677 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700678
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800679 /**
680 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
681 * object.
682 */
683 @Nullable
684 public PreloadIconDrawable makePreloadIcon() {
685 if (!(getTag() instanceof ItemInfoWithIcon)) {
686 return null;
687 }
688
689 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
690 int progressLevel = info.getProgressLevel();
691 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
692
693 preloadDrawable.setLevel(progressLevel);
694 preloadDrawable.setIsDisabled(!info.isAppStartable());
695
696 return preloadDrawable;
697 }
698
Tony Wickhamf34bee82018-12-03 18:11:39 -0800699 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800700 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800701 boolean wasDotted = mDotInfo != null;
702 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
703 boolean isDotted = mDotInfo != null;
704 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700705 if (mDisplay == DISPLAY_ALL_APPS) {
706 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
707 } else {
708 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
709 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800710 if (wasDotted || isDotted) {
711 // Animate when a dot is first added or when it is removed.
712 if (animate && (wasDotted ^ isDotted) && isShown()) {
713 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800714 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800715 cancelDotScaleAnim();
716 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800717 invalidate();
718 }
719 }
Tony Wickham305e9202018-01-23 17:46:47 -0800720 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700721 if (itemInfo.isDisabled()) {
722 setContentDescription(getContext().getString(R.string.disabled_app_label,
723 itemInfo.contentDescription));
724 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800725 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800726 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800727 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800728 } else {
729 setContentDescription(itemInfo.contentDescription);
730 }
731 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800732 }
733 }
734
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800735 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
736 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
737 != 0) {
738 String percentageString = NumberFormat.getPercentInstance()
739 .format(progressLevel * 0.01);
740 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
741 setContentDescription(getContext()
742 .getString(
743 R.string.app_installing_title, info.title, percentageString));
744 } else if ((info.runtimeStatusFlags
745 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
746 setContentDescription(getContext()
747 .getString(
748 R.string.app_downloading_title, info.title, percentageString));
749 }
750 }
751 }
752
Winson Chungb745afb2015-03-02 11:51:23 -0800753 /**
754 * Sets the icon for this view based on the layout direction.
755 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700756 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700757 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700758 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700759 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700760 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800761 if (mIcon != null) {
762 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
763 }
Tony17b7f9b2017-05-23 12:19:09 -0700764 }
765
Jon Miranda9b78e192019-08-30 18:42:01 -0700766 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700767 public void setIconVisible(boolean visible) {
768 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700769 if (!mIsIconVisible) {
770 resetIconScale();
771 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700772 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700773 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700774 }
775
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400776 protected boolean iconUpdateAnimationEnabled() {
777 return mEnableIconUpdateAnimation;
778 }
779
Tony Wickham377ed3f2016-07-20 15:21:04 -0700780 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700781 // If we had already set an icon before, disable relayout as the icon size is the
782 // same as before.
783 mDisableRelayout = mIcon != null;
784
785 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700786
787 updateIcon(icon);
788
789 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400790 if (mIcon != null
791 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400792 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000793 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800794 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700795
Sunny Goyal66dccad2018-03-19 12:00:51 -0700796 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800797 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700798
Sunny Goyal69b75642015-05-15 17:00:24 -0700799 @Override
800 public void requestLayout() {
801 if (!mDisableRelayout) {
802 super.requestLayout();
803 }
804 }
805
Sunny Goyal34b65272015-03-11 16:56:52 -0700806 /**
807 * Applies the item info if it is same as what the view is pointing to currently.
808 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800809 @Override
810 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700811 if (getTag() == info) {
812 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700813 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400814 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700815
Jon Miranda7f522a22017-07-28 11:56:47 -0700816 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700817 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700818
Sunny Goyal34b65272015-03-11 16:56:52 -0700819 if (info instanceof AppInfo) {
820 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700821 } else if (info instanceof WorkspaceItemInfo) {
822 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700823 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700824 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700825 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600826 } else if (info instanceof SearchActionItemInfo) {
827 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700828 }
Winsonc0880492015-08-21 11:16:27 -0700829
Sunny Goyal69b75642015-05-15 17:00:24 -0700830 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400831 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700832 }
833 }
834
835 /**
836 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
837 */
838 public void verifyHighRes() {
839 if (mIconLoadRequest != null) {
840 mIconLoadRequest.cancel();
841 mIconLoadRequest = null;
842 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800843 if (getTag() instanceof ItemInfoWithIcon) {
844 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700845 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800846 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700847 .updateIconInBackground(BubbleTextView.this, info);
848 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700849 }
850 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700851
Jon Miranda47170112017-03-03 14:57:14 -0800852 public int getIconSize() {
853 return mIconSize;
854 }
Adam Cohen65086992020-02-19 08:40:49 -0800855
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700856 private void updateTranslation() {
857 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
858 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700859 }
860
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700861 public void setReorderBounceOffset(float x, float y) {
862 mTranslationForReorderBounce.set(x, y);
863 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700864 }
865
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700866 public void getReorderBounceOffset(PointF offset) {
867 offset.set(mTranslationForReorderBounce);
868 }
869
870 @Override
871 public void setReorderPreviewOffset(float x, float y) {
872 mTranslationForReorderPreview.set(x, y);
873 updateTranslation();
874 }
875
876 @Override
877 public void getReorderPreviewOffset(PointF offset) {
878 offset.set(mTranslationForReorderPreview);
879 }
880
881 public void setReorderBounceScale(float scale) {
882 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700883 super.setScaleX(scale);
884 super.setScaleY(scale);
885 }
886
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700887 public float getReorderBounceScale() {
888 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700889 }
890
891 public View getView() {
892 return this;
893 }
894
Adam Cohen65086992020-02-19 08:40:49 -0800895 @Override
896 public int getViewType() {
897 return DRAGGABLE_ICON;
898 }
899
900 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700901 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800902 DeviceProfile grid = mActivity.getDeviceProfile();
903 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
904 }
905
Adam Cohenc77bc452020-05-07 11:55:19 -0700906 private int getIconSizeForDisplay(int display) {
907 DeviceProfile grid = mActivity.getDeviceProfile();
908 switch (display) {
909 case DISPLAY_ALL_APPS:
910 return grid.allAppsIconSizePx;
911 case DISPLAY_WORKSPACE:
912 case DISPLAY_FOLDER:
913 default:
914 return grid.iconSizePx;
915 }
916 }
917
918 public void getSourceVisualDragBounds(Rect bounds) {
919 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
920 }
921
Adam Cohen65086992020-02-19 08:40:49 -0800922 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700923 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700924 int highlightColor = mHighlightColor;
925 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700926 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800927 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700928 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800929 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700930
931 private void resetIconScale() {
932 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -0700933 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700934 }
935 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700936
937 private void updateIcon(Drawable newIcon) {
938 if (mLayoutHorizontal) {
939 setCompoundDrawablesRelative(newIcon, null, null, null);
940 } else {
941 setCompoundDrawables(null, newIcon, null, null);
942 }
943 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800944}