blob: 2b58fb6adf9b4150d38fb6011873c867efedb91c [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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070028import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070029import android.content.res.TypedArray;
Samuel Fufa314761a2020-10-14 10:15:07 -070030import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070032import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070033import android.graphics.Paint;
Samuel Fufa314761a2020-10-14 10:15:07 -070034import android.graphics.Path;
Adam Cohend9162062020-03-24 16:35:35 -070035import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080036import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070037import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.graphics.drawable.Drawable;
Samuel Fufa314761a2020-10-14 10:15:07 -070039import android.os.Process;
Sunny Goyal66dccad2018-03-19 12:00:51 -070040import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080041import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080042import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070043import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070044import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080045import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070046import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080047import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080048import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070049
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000050import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080051import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070052
Adam Cohen29794c52019-06-21 12:50:30 -070053import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Samuel Fufa314761a2020-10-14 10:15:07 -070054import com.android.launcher3.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080055import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080056import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070057import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080058import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070059import com.android.launcher3.graphics.IconShape;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070060import com.android.launcher3.graphics.PlaceHolderIconDrawable;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080061import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080062import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080063import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070064import com.android.launcher3.icons.LauncherIcons;
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
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080095
Adam Cohen1d13c0b2020-04-21 16:29:12 -070096 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
97 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
98
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070099 private static final int ICON_UPDATE_ANIMATION_DURATION = 375;
100
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700101 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800102
Samuel Fufa314761a2020-10-14 10:15:07 -0700103 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
104 private final Path mHighlightPath = new Path();
105 protected int mHighlightColor = Color.TRANSPARENT;
106 private final BlurMaskFilter mHighlightShadowFilter;
107
Tony Wickhamf34bee82018-12-03 18:11:39 -0800108 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
109 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800110 @Override
111 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800112 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800113 }
114
115 @Override
116 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800117 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800118 bubbleTextView.invalidate();
119 }
120 };
121
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
123 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700124 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700125 public Float get(BubbleTextView bubbleTextView) {
126 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700127 }
128
129 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700130 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700131 bubbleTextView.setTextAlpha(alpha);
132 }
133 };
134
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800135 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700136 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800137 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700138
Tony Wickham794fe4f2021-01-11 14:54:23 -0600139 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700140
Sunny Goyaled7a6932018-04-13 11:41:50 -0700141 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700142
143 private final boolean mLayoutHorizontal;
144 private final int mIconSize;
145
146 @ViewDebug.ExportedProperty(category = "launcher")
147 private boolean mIsIconVisible = true;
148 @ViewDebug.ExportedProperty(category = "launcher")
149 private int mTextColor;
150 @ViewDebug.ExportedProperty(category = "launcher")
151 private float mTextAlpha = 1;
152
Tony4043b052018-08-17 13:47:39 -0700153 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800154 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800155 private DotRenderer mDotRenderer;
156 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
157 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800158 private Animator mDotScaleAnim;
159 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700160
Sunny Goyal4ffec482016-02-09 11:28:52 -0800161 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800162 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800163 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700164 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800165 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700166 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500167
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800168 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700169
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400170 private boolean mEnableIconUpdateAnimation = false;
171
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800172 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700173 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 }
175
176 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700177 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 }
179
180 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
181 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800182 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700183
Adam Cohen96bb7982014-07-07 11:58:56 -0700184 TypedArray a = context.obtainStyledAttributes(attrs,
185 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800186 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700187 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700188
Samuel Fufac96fa242019-09-26 23:06:32 -0700189 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700190 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700191 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700192 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700193 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700194 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500195 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700196 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700197 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
198 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700199 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700200 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700201 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700202 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700203 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700204 } else if (mDisplay == DISPLAY_HERO_APP) {
205 defaultIconSize = grid.allAppsIconSizePx;
Tony Wickham794fe4f2021-01-11 14:54:23 -0600206 } else if (mDisplay == DISPLAY_TASKBAR) {
207 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700208 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700209 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700210 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700211 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700212
Winson1f064272016-07-18 17:18:02 -0700213 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700214
215 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
216 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700217 a.recycle();
218
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800219 mLongPressHelper = new CheckLongPressHelper(this);
220
Tony Wickham8912b042018-11-29 15:28:53 -0800221 mDotParams = new DotRenderer.DrawParams();
222
Sunny Goyal66dccad2018-03-19 12:00:51 -0700223 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700224 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700225 setTextAlpha(1f);
Samuel Fufa314761a2020-10-14 10:15:07 -0700226
227 int shadowSize = context.getResources().getDimensionPixelSize(
228 R.dimen.blur_size_click_shadow);
229 mHighlightShadowFilter = new BlurMaskFilter(shadowSize, BlurMaskFilter.Blur.INNER);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800230 }
231
Sunny Goyal66dccad2018-03-19 12:00:51 -0700232 @Override
233 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
234 // Disable marques when not focused to that, so that updating text does not cause relayout.
235 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
236 super.onFocusChanged(focused, direction, previouslyFocusedRect);
237 }
238
Jon Miranda52549442017-10-26 11:28:06 -0700239 /**
240 * Resets the view so it can be recycled.
241 */
242 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800243 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800244 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800245 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800246 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800247 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800248 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700249 }
250
Tony Wickhamf34bee82018-12-03 18:11:39 -0800251 private void cancelDotScaleAnim() {
252 if (mDotScaleAnim != null) {
253 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700254 }
255 }
256
Tony Wickhamf34bee82018-12-03 18:11:39 -0800257 private void animateDotScale(float... dotScales) {
258 cancelDotScaleAnim();
259 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
260 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700261 @Override
262 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800263 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700264 }
265 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800266 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700267 }
268
Hyunyoung Song5809a402021-02-02 01:19:18 -0800269 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700270 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
271 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700272 }
273
Adam Cohen29794c52019-06-21 12:50:30 -0700274 @Override
275 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
276 if (delegate instanceof LauncherAccessibilityDelegate) {
277 super.setAccessibilityDelegate(delegate);
278 } else {
279 // NO-OP
280 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
281 // delegate incorrectly. There are no cases when we shouldn't be using the
282 // LauncherAccessibilityDelegate for BubbleTextView.
283 }
284 }
285
Hyunyoung Song5809a402021-02-02 01:19:18 -0800286 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700287 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800288 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800289 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000290 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800291 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800292 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800293 }
294
Hyunyoung Song5809a402021-02-02 01:19:18 -0800295 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700296 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800297 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700298
Sunny Goyal95899162019-03-27 16:03:06 -0700299 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700300 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700301
302 // Verify high res immediately
303 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800304
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000305 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800306 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700307 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800308 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800309 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700310 }
311
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700312 /**
313 * Apply label and tag using a generic {@link ItemInfoWithIcon}
314 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800315 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700316 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800317 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700318 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700319 super.setTag(info);
320
321 // Verify high res immediately
322 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800323
324 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700325 }
326
Samuel Fufa02be2a42020-09-23 00:45:27 -0700327 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600328 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700329 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800330 @UiThread
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
Hyunyoung Song5809a402021-02-02 01:19:18 -0800336 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600337 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700338 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700339 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800340
Sunny Goyalf4204382016-07-13 10:46:07 -0700341 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000342 applyLabel(info);
343 }
344
Hyunyoung Song5809a402021-02-02 01:19:18 -0800345 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000346 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700347 setText(info.title);
348 if (info.contentDescription != null) {
349 setContentDescription(info.isDisabled()
350 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
351 : info.contentDescription);
352 }
353 }
354
Winson Chung7501adf2015-06-02 11:24:28 -0700355 /**
Tony Wickhamaaa42bd2021-01-27 16:27:15 -0800356 * Directly set the icon and label.
357 */
358 @UiThread
359 public void applyIconAndLabel(Drawable icon, CharSequence label) {
360 setIcon(icon);
361 setText(label);
362 setContentDescription(label);
363 }
364
365 /**
Winson Chung7501adf2015-06-02 11:24:28 -0700366 * Overrides the default long press timeout.
367 */
Tony2ca999c2018-09-24 17:24:51 -0400368 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
369 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700370 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700371
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800372 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800373 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700374 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800375 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800376 }
Sunny Goyal508da152014-08-14 10:53:27 -0700377 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800378
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800379 @Override
380 protected int[] onCreateDrawableState(int extraSpace) {
381 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
382 if (mStayPressed) {
383 mergeDrawableStates(drawableState, STATE_PRESSED);
384 }
385 return drawableState;
386 }
387
Winson Chungb745afb2015-03-02 11:51:23 -0800388 /** Returns the icon for this view. */
389 public Drawable getIcon() {
390 return mIcon;
391 }
392
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700393 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800394 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700395 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700396 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700397 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700398 return false;
399 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700400 if (isLongClickable()) {
401 super.onTouchEvent(event);
402 mLongPressHelper.onTouchEvent(event);
403 // Keep receiving the rest of the events
404 return true;
405 } else {
406 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700407 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800408 }
409
Sunny Goyal44a3b202020-07-09 08:27:06 -0700410 /**
411 * Returns true if the touch down at the provided position be ignored
412 */
413 protected boolean shouldIgnoreTouchDown(float x, float y) {
414 return y < getPaddingTop()
415 || x < getPaddingLeft()
416 || y > getHeight() - getPaddingBottom()
417 || x > getWidth() - getPaddingRight();
418 }
419
Michael Jurkaddd62e92011-02-16 17:49:14 -0800420 void setStayPressed(boolean stayPressed) {
421 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800422 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800423 }
424
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700425 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800426 public void onVisibilityAggregated(boolean isVisible) {
427 super.onVisibilityAggregated(isVisible);
428 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800429 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800430 }
431 }
432
Sunny Goyal508da152014-08-14 10:53:27 -0700433 void clearPressedBackground() {
434 setPressed(false);
435 setStayPressed(false);
436 }
437
438 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700439 public boolean onKeyUp(int keyCode, KeyEvent event) {
440 // Unlike touch events, keypress event propagate pressed state change immediately,
441 // without waiting for onClickHandler to execute. Disable pressed state changes here
442 // to avoid flickering.
443 mIgnorePressedStateChange = true;
444 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700445 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800446 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700447 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800448 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800449
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700450 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800451 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700452 super.onDraw(canvas);
453 }
454
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800455 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700456 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700457 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
458 int count = canvas.save();
459 drawFocusHighlight(canvas);
460 canvas.restoreToCount(count);
461 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700462 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800463 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700464 }
465
466 protected void drawFocusHighlight(Canvas canvas) {
467 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
468 ((ItemInfo) getTag()).user);
469 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
470 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
471 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
472 mHighlightPath.reset();
473 mHighlightPaint.reset();
474 getIconBounds(mDotParams.iconBounds);
475 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
476 outlineSize / 2);
477 if (isBadged) {
478 float borderSize = outlineSize - getIconSize();
479 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
480 float badgeInset = outlineSize - badgeSize;
481 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
482 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
483 }
484 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
485 mHighlightPaint.setColor(mDotParams.color);
486 canvas.drawPath(mHighlightPath, mHighlightPaint);
487 mHighlightPaint.setMaskFilter(null);
488 mHighlightPaint.setColor(mHighlightColor);
489 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800490 }
491
492 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800493 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700494 *
Tony Wickham1237df02017-02-24 08:59:36 -0800495 * @param canvas The canvas to draw to.
496 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800497 protected void drawDotIfNecessary(Canvas canvas) {
Tony Wickham7ba547c2021-02-02 17:12:08 -0800498 if (mActivity instanceof Launcher && ((Launcher) mActivity).isViewInTaskbar(this)) {
Tony Wickham794fe4f2021-01-11 14:54:23 -0600499 // TODO: support notification dots in Taskbar
500 return;
501 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800502 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800503 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700504 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
505 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800506 final int scrollX = getScrollX();
507 final int scrollY = getScrollY();
508 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800509 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800510 canvas.translate(-scrollX, -scrollY);
511 }
512 }
513
Jon Miranda9b78e192019-08-30 18:42:01 -0700514 @Override
515 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800516 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800517 return;
518 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800519 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800520
Tony Wickhamf34bee82018-12-03 18:11:39 -0800521 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800522 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800523 } else if (hasDot()) {
524 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800525 }
526 }
527
Tony Wickhamf34bee82018-12-03 18:11:39 -0800528 private boolean hasDot() {
529 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800530 }
531
532 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700533 getIconBounds(this, outBounds, mIconSize);
534 }
535
536 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
537 int top = iconView.getPaddingTop();
538 int left = (iconView.getWidth() - iconSize) / 2;
539 int right = left + iconSize;
540 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800541 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800542 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400543
Jon Miranda228877d2021-02-09 11:05:00 -0500544
545 /**
546 * Sets whether to vertically center the content.
547 */
548 public void setCenterVertically(boolean centerVertically) {
549 mCenterVertically = centerVertically;
550 }
551
Joe Onorato9c1289c2009-08-17 11:03:03 -0400552 @Override
Winson1f064272016-07-18 17:18:02 -0700553 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
554 if (mCenterVertically) {
555 Paint.FontMetrics fm = getPaint().getFontMetrics();
556 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
557 (int) Math.ceil(fm.bottom - fm.top);
558 int height = MeasureSpec.getSize(heightMeasureSpec);
559 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
560 getPaddingBottom());
561 }
562 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
563 }
564
565 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700566 public void setTextColor(int color) {
567 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700568 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700569 }
570
Adam Cohen96bb7982014-07-07 11:58:56 -0700571 @Override
572 public void setTextColor(ColorStateList colors) {
573 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700574 if (Float.compare(mTextAlpha, 1) == 0) {
575 super.setTextColor(colors);
576 } else {
577 super.setTextColor(getModifiedColor());
578 }
Adam Cohen477828c2013-09-20 12:05:49 -0700579 }
580
Tony7308cde2017-06-27 22:38:33 -0700581 public boolean shouldTextBeVisible() {
582 // Text should be visible everywhere but the hotseat.
583 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
584 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700585 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
586 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700587 }
588
Winson Chung5f8afe62013-08-12 16:19:28 -0700589 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700590 setTextAlpha(visible ? 1 : 0);
591 }
592
593 private void setTextAlpha(float alpha) {
594 mTextAlpha = alpha;
595 super.setTextColor(getModifiedColor());
596 }
597
598 private int getModifiedColor() {
599 if (mTextAlpha == 0) {
600 // Special case to prevent text shadows in high contrast mode
601 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700602 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800603 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700604 }
605
606 /**
607 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700608 *
Tony8f402802017-06-16 17:24:54 -0700609 * @param fadeIn Whether the text should fade in or fade out.
610 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700611 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700612 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700613 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700614 }
615
Winson Chungaffd7b42010-08-20 15:11:56 -0700616 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800617 public void cancelLongPress() {
618 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800619 mLongPressHelper.cancelLongPress();
620 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500621
Samuel Fufac2820182021-01-22 11:47:25 -0600622 /**
623 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000624 *
625 * If this app is installing, the progress bar will be updated with the installation progress.
626 * If this app is installed and downloading incrementally, the progress bar will be updated
627 * with the total download progress.
628 */
629 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800630 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700631 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000632 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
633 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800634 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000635 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800636 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
637 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700638 }
639 }
640 }
641
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800642 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
643 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000644 if (preloadDrawable != null && maybePerformFinishedAnimation) {
645 preloadDrawable.maybePerformFinishedAnimation();
646 }
647 }
648
649 /** Applies the given progress level to the this icon's progress bar. */
650 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800651 public PreloadIconDrawable applyProgressLevel() {
652 if (!(getTag() instanceof ItemInfoWithIcon)) {
653 return null;
654 }
655
656 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
657 int progressLevel = info.getProgressLevel();
658 if (progressLevel >= 100) {
659 setContentDescription(info.contentDescription != null
660 ? info.contentDescription : "");
661 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800662 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800663 } else {
664 setContentDescription(getContext()
665 .getString(R.string.app_waiting_download_title, info.title));
666 }
667 if (mIcon != null) {
668 PreloadIconDrawable preloadIconDrawable;
669 if (mIcon instanceof PreloadIconDrawable) {
670 preloadIconDrawable = (PreloadIconDrawable) mIcon;
671 preloadIconDrawable.setLevel(progressLevel);
672 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700673 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800674 preloadIconDrawable = makePreloadIcon();
675 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700676 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800677 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400678 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700679 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400680 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700681
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800682 /**
683 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
684 * object.
685 */
686 @Nullable
687 public PreloadIconDrawable makePreloadIcon() {
688 if (!(getTag() instanceof ItemInfoWithIcon)) {
689 return null;
690 }
691
692 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
693 int progressLevel = info.getProgressLevel();
694 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
695
696 preloadDrawable.setLevel(progressLevel);
697 preloadDrawable.setIsDisabled(!info.isAppStartable());
698
699 return preloadDrawable;
700 }
701
Tony Wickhamf34bee82018-12-03 18:11:39 -0800702 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800703 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800704 boolean wasDotted = mDotInfo != null;
705 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
706 boolean isDotted = mDotInfo != null;
707 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700708 if (mDisplay == DISPLAY_ALL_APPS) {
709 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
710 } else {
711 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
712 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800713 if (wasDotted || isDotted) {
714 // Animate when a dot is first added or when it is removed.
715 if (animate && (wasDotted ^ isDotted) && isShown()) {
716 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800717 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800718 cancelDotScaleAnim();
719 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800720 invalidate();
721 }
722 }
Tony Wickham305e9202018-01-23 17:46:47 -0800723 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700724 if (itemInfo.isDisabled()) {
725 setContentDescription(getContext().getString(R.string.disabled_app_label,
726 itemInfo.contentDescription));
727 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800728 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800729 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800730 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800731 } else {
732 setContentDescription(itemInfo.contentDescription);
733 }
734 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800735 }
736 }
737
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800738 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
739 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
740 != 0) {
741 String percentageString = NumberFormat.getPercentInstance()
742 .format(progressLevel * 0.01);
743 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
744 setContentDescription(getContext()
745 .getString(
746 R.string.app_installing_title, info.title, percentageString));
747 } else if ((info.runtimeStatusFlags
748 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
749 setContentDescription(getContext()
750 .getString(
751 R.string.app_downloading_title, info.title, percentageString));
752 }
753 }
754 }
755
Winson Chungb745afb2015-03-02 11:51:23 -0800756 /**
757 * Sets the icon for this view based on the layout direction.
758 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700759 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700760 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700761 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700762 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700763 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800764 if (mIcon != null) {
765 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
766 }
Tony17b7f9b2017-05-23 12:19:09 -0700767 }
768
Jon Miranda9b78e192019-08-30 18:42:01 -0700769 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700770 public void setIconVisible(boolean visible) {
771 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700772 if (!mIsIconVisible) {
773 resetIconScale();
774 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700775 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700776 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700777 }
778
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400779 protected boolean iconUpdateAnimationEnabled() {
780 return mEnableIconUpdateAnimation;
781 }
782
Tony Wickham377ed3f2016-07-20 15:21:04 -0700783 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700784 // If we had already set an icon before, disable relayout as the icon size is the
785 // same as before.
786 mDisableRelayout = mIcon != null;
787
788 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700789
790 updateIcon(icon);
791
792 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400793 if (mIcon != null
794 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400795 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000796 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800797 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700798
Sunny Goyal66dccad2018-03-19 12:00:51 -0700799 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800800 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700801
Sunny Goyal69b75642015-05-15 17:00:24 -0700802 @Override
803 public void requestLayout() {
804 if (!mDisableRelayout) {
805 super.requestLayout();
806 }
807 }
808
Sunny Goyal34b65272015-03-11 16:56:52 -0700809 /**
810 * Applies the item info if it is same as what the view is pointing to currently.
811 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800812 @Override
813 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700814 if (getTag() == info) {
815 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700816 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400817 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700818
Jon Miranda7f522a22017-07-28 11:56:47 -0700819 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700820 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700821
Sunny Goyal34b65272015-03-11 16:56:52 -0700822 if (info instanceof AppInfo) {
823 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700824 } else if (info instanceof WorkspaceItemInfo) {
825 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700826 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700827 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700828 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600829 } else if (info instanceof SearchActionItemInfo) {
830 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700831 }
Winsonc0880492015-08-21 11:16:27 -0700832
Sunny Goyal69b75642015-05-15 17:00:24 -0700833 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400834 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700835 }
836 }
837
838 /**
839 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
840 */
841 public void verifyHighRes() {
842 if (mIconLoadRequest != null) {
843 mIconLoadRequest.cancel();
844 mIconLoadRequest = null;
845 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800846 if (getTag() instanceof ItemInfoWithIcon) {
847 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700848 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800849 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700850 .updateIconInBackground(BubbleTextView.this, info);
851 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700852 }
853 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700854
Jon Miranda47170112017-03-03 14:57:14 -0800855 public int getIconSize() {
856 return mIconSize;
857 }
Adam Cohen65086992020-02-19 08:40:49 -0800858
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700859 private void updateTranslation() {
860 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
861 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700862 }
863
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700864 public void setReorderBounceOffset(float x, float y) {
865 mTranslationForReorderBounce.set(x, y);
866 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700867 }
868
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700869 public void getReorderBounceOffset(PointF offset) {
870 offset.set(mTranslationForReorderBounce);
871 }
872
873 @Override
874 public void setReorderPreviewOffset(float x, float y) {
875 mTranslationForReorderPreview.set(x, y);
876 updateTranslation();
877 }
878
879 @Override
880 public void getReorderPreviewOffset(PointF offset) {
881 offset.set(mTranslationForReorderPreview);
882 }
883
884 public void setReorderBounceScale(float scale) {
885 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700886 super.setScaleX(scale);
887 super.setScaleY(scale);
888 }
889
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700890 public float getReorderBounceScale() {
891 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700892 }
893
894 public View getView() {
895 return this;
896 }
897
Adam Cohen65086992020-02-19 08:40:49 -0800898 @Override
899 public int getViewType() {
900 return DRAGGABLE_ICON;
901 }
902
903 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700904 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800905 DeviceProfile grid = mActivity.getDeviceProfile();
906 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
907 }
908
Adam Cohenc77bc452020-05-07 11:55:19 -0700909 private int getIconSizeForDisplay(int display) {
910 DeviceProfile grid = mActivity.getDeviceProfile();
911 switch (display) {
912 case DISPLAY_ALL_APPS:
913 return grid.allAppsIconSizePx;
914 case DISPLAY_WORKSPACE:
915 case DISPLAY_FOLDER:
916 default:
917 return grid.iconSizePx;
918 }
919 }
920
921 public void getSourceVisualDragBounds(Rect bounds) {
922 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
923 }
924
Adam Cohen65086992020-02-19 08:40:49 -0800925 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700926 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700927 int highlightColor = mHighlightColor;
928 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700929 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800930 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700931 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800932 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700933
934 private void resetIconScale() {
935 if (mIcon instanceof FastBitmapDrawable) {
936 ((FastBitmapDrawable) mIcon).setScale(1f);
937 }
938 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700939
940 private void updateIcon(Drawable newIcon) {
941 if (mLayoutHorizontal) {
942 setCompoundDrawablesRelative(newIcon, null, null, null);
943 } else {
944 setCompoundDrawables(null, newIcon, null, null);
945 }
946 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800947}