blob: 322c6eed29bdb144cc9218392f1047f01c358111 [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.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080020import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
21
Tony4043b052018-08-17 13:47:39 -070022import android.animation.Animator;
23import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080024import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070026import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070027import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070029import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070030import android.graphics.Paint;
Adam Cohend9162062020-03-24 16:35:35 -070031import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080032import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070033import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.graphics.drawable.Drawable;
Sunny Goyal66dccad2018-03-19 12:00:51 -070035import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080036import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080037import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070038import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070039import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080040import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070041import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080042import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080043import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070044
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000045import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080046import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070047
Adam Cohen29794c52019-06-21 12:50:30 -070048import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080049import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080050import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070051import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080052import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070053import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080054import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080055import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070056import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080057import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyal572aca42021-03-24 15:21:39 -070058import com.android.launcher3.icons.PlaceHolderIconDrawable;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080059import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070060import com.android.launcher3.model.data.AppInfo;
61import com.android.launcher3.model.data.ItemInfo;
62import com.android.launcher3.model.data.ItemInfoWithIcon;
63import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060064import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070065import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070066import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080067import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070068import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070069
Sunny Goyalc469aad2015-10-01 11:24:23 -070070import java.text.NumberFormat;
71
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072/**
73 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
74 * because we want to make the bubble taller than the text and TextView's clip is
75 * too aggressive.
76 */
Sunny Goyalb65d7662021-03-07 15:09:11 -080077public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080078 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070079
Sunny Goyaldfaccf62015-05-11 16:30:44 -070080 private static final int DISPLAY_WORKSPACE = 0;
81 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070082 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070083 private static final int DISPLAY_HERO_APP = 5;
Tony Wickham794fe4f2021-01-11 14:54:23 -060084 protected static final int DISPLAY_TASKBAR = 6;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070085
Samuel Fufad6bacdc2020-08-23 21:56:07 -070086 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070087 private static final float HIGHLIGHT_SCALE = 1.16f;
88
Adam Cohen1d13c0b2020-04-21 16:29:12 -070089 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
90 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
91
92 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080093
Tony Wickhamf34bee82018-12-03 18:11:39 -080094 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
95 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080096 @Override
97 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080098 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080099 }
100
101 @Override
102 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800103 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800104 bubbleTextView.invalidate();
105 }
106 };
107
Sunny Goyaled7a6932018-04-13 11:41:50 -0700108 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
109 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700110 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700111 public Float get(BubbleTextView bubbleTextView) {
112 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700113 }
114
115 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700116 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700117 bubbleTextView.setTextAlpha(alpha);
118 }
119 };
120
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800121 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800123 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700124
Tony Wickham794fe4f2021-01-11 14:54:23 -0600125 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700126
Sunny Goyaled7a6932018-04-13 11:41:50 -0700127 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700128
129 private final boolean mLayoutHorizontal;
130 private final int mIconSize;
131
132 @ViewDebug.ExportedProperty(category = "launcher")
133 private boolean mIsIconVisible = true;
134 @ViewDebug.ExportedProperty(category = "launcher")
135 private int mTextColor;
136 @ViewDebug.ExportedProperty(category = "launcher")
137 private float mTextAlpha = 1;
138
Tony4043b052018-08-17 13:47:39 -0700139 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800140 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800141 private DotRenderer mDotRenderer;
142 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
143 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800144 private Animator mDotScaleAnim;
145 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700146
Sunny Goyal4ffec482016-02-09 11:28:52 -0800147 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800148 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800149 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700150 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800151 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700152 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500153
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800154 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700155
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400156 private boolean mEnableIconUpdateAnimation = false;
157
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700159 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800160 }
161
162 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700163 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164 }
165
166 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
167 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800168 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700169
Adam Cohen96bb7982014-07-07 11:58:56 -0700170 TypedArray a = context.obtainStyledAttributes(attrs,
171 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800172 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700173 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700174
Samuel Fufac96fa242019-09-26 23:06:32 -0700175 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700176 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700177 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700178 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700179 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700180 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500181 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700182 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700183 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
184 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700185 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700186 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700187 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700188 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700189 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700190 } else if (mDisplay == DISPLAY_HERO_APP) {
191 defaultIconSize = grid.allAppsIconSizePx;
Tony Wickham794fe4f2021-01-11 14:54:23 -0600192 } else if (mDisplay == DISPLAY_TASKBAR) {
193 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700194 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700195 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700196 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700197 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700198
Winson1f064272016-07-18 17:18:02 -0700199 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700200
201 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
202 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700203 a.recycle();
204
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800205 mLongPressHelper = new CheckLongPressHelper(this);
206
Tony Wickham8912b042018-11-29 15:28:53 -0800207 mDotParams = new DotRenderer.DrawParams();
208
Sunny Goyal66dccad2018-03-19 12:00:51 -0700209 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700210 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700211 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800212 }
213
Sunny Goyal66dccad2018-03-19 12:00:51 -0700214 @Override
215 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
216 // Disable marques when not focused to that, so that updating text does not cause relayout.
217 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
218 super.onFocusChanged(focused, direction, previouslyFocusedRect);
219 }
220
Jon Miranda52549442017-10-26 11:28:06 -0700221 /**
222 * Resets the view so it can be recycled.
223 */
224 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800225 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800226 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800227 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800228 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800229 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800230 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700231 }
232
Tony Wickhamf34bee82018-12-03 18:11:39 -0800233 private void cancelDotScaleAnim() {
234 if (mDotScaleAnim != null) {
235 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700236 }
237 }
238
Tony Wickhamf34bee82018-12-03 18:11:39 -0800239 private void animateDotScale(float... dotScales) {
240 cancelDotScaleAnim();
241 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
242 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700243 @Override
244 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800245 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700246 }
247 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800248 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700249 }
250
Hyunyoung Song5809a402021-02-02 01:19:18 -0800251 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700252 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
253 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700254 }
255
Adam Cohen29794c52019-06-21 12:50:30 -0700256 @Override
257 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
258 if (delegate instanceof LauncherAccessibilityDelegate) {
259 super.setAccessibilityDelegate(delegate);
260 } else {
261 // NO-OP
262 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
263 // delegate incorrectly. There are no cases when we shouldn't be using the
264 // LauncherAccessibilityDelegate for BubbleTextView.
265 }
266 }
267
Hyunyoung Song5809a402021-02-02 01:19:18 -0800268 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700269 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800270 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800271 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000272 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800273 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800274 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800275 }
276
Hyunyoung Song5809a402021-02-02 01:19:18 -0800277 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700278 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800279 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700280
Sunny Goyal95899162019-03-27 16:03:06 -0700281 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700282 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700283
284 // Verify high res immediately
285 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800286
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000287 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800288 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700289 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800290 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800291 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700292 }
293
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700294 /**
295 * Apply label and tag using a generic {@link ItemInfoWithIcon}
296 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800297 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700298 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800299 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700300 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700301 super.setTag(info);
302
303 // Verify high res immediately
304 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800305
306 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700307 }
308
Samuel Fufa02be2a42020-09-23 00:45:27 -0700309 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600310 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700311 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800312 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600313 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
314 applyIconAndLabel(searchActionItemInfo);
315 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700316 }
317
Hyunyoung Song5809a402021-02-02 01:19:18 -0800318 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600319 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal9ab43772021-04-23 11:40:58 -0700320 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER;
321 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), useTheme);
Sunny Goyal3808a692019-10-25 13:41:28 -0700322 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800323
Sunny Goyalf4204382016-07-13 10:46:07 -0700324 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000325 applyLabel(info);
326 }
327
Hyunyoung Song5809a402021-02-02 01:19:18 -0800328 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000329 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700330 setText(info.title);
331 if (info.contentDescription != null) {
332 setContentDescription(info.isDisabled()
333 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
334 : info.contentDescription);
335 }
336 }
337
Winson Chung7501adf2015-06-02 11:24:28 -0700338 /**
Tony Wickhamaaa42bd2021-01-27 16:27:15 -0800339 * Directly set the icon and label.
340 */
341 @UiThread
342 public void applyIconAndLabel(Drawable icon, CharSequence label) {
343 setIcon(icon);
344 setText(label);
345 setContentDescription(label);
346 }
347
348 /**
Winson Chung7501adf2015-06-02 11:24:28 -0700349 * Overrides the default long press timeout.
350 */
Tony2ca999c2018-09-24 17:24:51 -0400351 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
352 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700353 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700354
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800355 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800356 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700357 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800358 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800359 }
Sunny Goyal508da152014-08-14 10:53:27 -0700360 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800361
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800362 @Override
363 protected int[] onCreateDrawableState(int extraSpace) {
364 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
365 if (mStayPressed) {
366 mergeDrawableStates(drawableState, STATE_PRESSED);
367 }
368 return drawableState;
369 }
370
Winson Chungb745afb2015-03-02 11:51:23 -0800371 /** Returns the icon for this view. */
372 public Drawable getIcon() {
373 return mIcon;
374 }
375
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700376 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800377 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700378 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700379 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700380 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700381 return false;
382 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700383 if (isLongClickable()) {
384 super.onTouchEvent(event);
385 mLongPressHelper.onTouchEvent(event);
386 // Keep receiving the rest of the events
387 return true;
388 } else {
389 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700390 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800391 }
392
Sunny Goyal44a3b202020-07-09 08:27:06 -0700393 /**
394 * Returns true if the touch down at the provided position be ignored
395 */
396 protected boolean shouldIgnoreTouchDown(float x, float y) {
397 return y < getPaddingTop()
398 || x < getPaddingLeft()
399 || y > getHeight() - getPaddingBottom()
400 || x > getWidth() - getPaddingRight();
401 }
402
Michael Jurkaddd62e92011-02-16 17:49:14 -0800403 void setStayPressed(boolean stayPressed) {
404 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800405 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800406 }
407
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700408 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800409 public void onVisibilityAggregated(boolean isVisible) {
410 super.onVisibilityAggregated(isVisible);
411 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800412 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800413 }
414 }
415
Sunny Goyal508da152014-08-14 10:53:27 -0700416 void clearPressedBackground() {
417 setPressed(false);
418 setStayPressed(false);
419 }
420
421 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700422 public boolean onKeyUp(int keyCode, KeyEvent event) {
423 // Unlike touch events, keypress event propagate pressed state change immediately,
424 // without waiting for onClickHandler to execute. Disable pressed state changes here
425 // to avoid flickering.
426 mIgnorePressedStateChange = true;
427 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700428 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800429 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700430 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800431 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800432
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700433 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800434 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700435 super.onDraw(canvas);
436 }
437
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800438 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700439 public void onDraw(Canvas canvas) {
440 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800441 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700442 }
443
Tony Wickham1237df02017-02-24 08:59:36 -0800444 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800445 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700446 *
Tony Wickham1237df02017-02-24 08:59:36 -0800447 * @param canvas The canvas to draw to.
448 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800449 protected void drawDotIfNecessary(Canvas canvas) {
450 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800451 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700452 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
453 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800454 final int scrollX = getScrollX();
455 final int scrollY = getScrollY();
456 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800457 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800458 canvas.translate(-scrollX, -scrollY);
459 }
460 }
461
Jon Miranda9b78e192019-08-30 18:42:01 -0700462 @Override
463 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800464 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800465 return;
466 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800467 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800468
Tony Wickhamf34bee82018-12-03 18:11:39 -0800469 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800470 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800471 } else if (hasDot()) {
472 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800473 }
474 }
475
Tony Wickhamf34bee82018-12-03 18:11:39 -0800476 private boolean hasDot() {
477 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800478 }
479
480 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700481 getIconBounds(this, outBounds, mIconSize);
482 }
483
484 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
485 int top = iconView.getPaddingTop();
486 int left = (iconView.getWidth() - iconSize) / 2;
487 int right = left + iconSize;
488 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800489 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800490 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400491
Jon Miranda228877d2021-02-09 11:05:00 -0500492
493 /**
494 * Sets whether to vertically center the content.
495 */
496 public void setCenterVertically(boolean centerVertically) {
497 mCenterVertically = centerVertically;
498 }
499
Joe Onorato9c1289c2009-08-17 11:03:03 -0400500 @Override
Winson1f064272016-07-18 17:18:02 -0700501 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
502 if (mCenterVertically) {
503 Paint.FontMetrics fm = getPaint().getFontMetrics();
504 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
505 (int) Math.ceil(fm.bottom - fm.top);
506 int height = MeasureSpec.getSize(heightMeasureSpec);
507 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
508 getPaddingBottom());
509 }
510 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
511 }
512
513 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700514 public void setTextColor(int color) {
515 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700516 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700517 }
518
Adam Cohen96bb7982014-07-07 11:58:56 -0700519 @Override
520 public void setTextColor(ColorStateList colors) {
521 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700522 if (Float.compare(mTextAlpha, 1) == 0) {
523 super.setTextColor(colors);
524 } else {
525 super.setTextColor(getModifiedColor());
526 }
Adam Cohen477828c2013-09-20 12:05:49 -0700527 }
528
Tony7308cde2017-06-27 22:38:33 -0700529 public boolean shouldTextBeVisible() {
530 // Text should be visible everywhere but the hotseat.
531 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
532 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700533 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
534 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700535 }
536
Winson Chung5f8afe62013-08-12 16:19:28 -0700537 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700538 setTextAlpha(visible ? 1 : 0);
539 }
540
541 private void setTextAlpha(float alpha) {
542 mTextAlpha = alpha;
543 super.setTextColor(getModifiedColor());
544 }
545
546 private int getModifiedColor() {
547 if (mTextAlpha == 0) {
548 // Special case to prevent text shadows in high contrast mode
549 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700550 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800551 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700552 }
553
554 /**
555 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700556 *
Tony8f402802017-06-16 17:24:54 -0700557 * @param fadeIn Whether the text should fade in or fade out.
558 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700559 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700560 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700561 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700562 }
563
Winson Chungaffd7b42010-08-20 15:11:56 -0700564 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800565 public void cancelLongPress() {
566 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800567 mLongPressHelper.cancelLongPress();
568 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500569
Samuel Fufac2820182021-01-22 11:47:25 -0600570 /**
571 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000572 *
573 * If this app is installing, the progress bar will be updated with the installation progress.
574 * If this app is installed and downloading incrementally, the progress bar will be updated
575 * with the total download progress.
576 */
577 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800578 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700579 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000580 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
581 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800582 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000583 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800584 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
585 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700586 }
587 }
588 }
589
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800590 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
591 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000592 if (preloadDrawable != null && maybePerformFinishedAnimation) {
593 preloadDrawable.maybePerformFinishedAnimation();
594 }
595 }
596
597 /** Applies the given progress level to the this icon's progress bar. */
598 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800599 public PreloadIconDrawable applyProgressLevel() {
600 if (!(getTag() instanceof ItemInfoWithIcon)) {
601 return null;
602 }
603
604 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
605 int progressLevel = info.getProgressLevel();
606 if (progressLevel >= 100) {
607 setContentDescription(info.contentDescription != null
608 ? info.contentDescription : "");
609 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800610 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800611 } else {
612 setContentDescription(getContext()
613 .getString(R.string.app_waiting_download_title, info.title));
614 }
615 if (mIcon != null) {
616 PreloadIconDrawable preloadIconDrawable;
617 if (mIcon instanceof PreloadIconDrawable) {
618 preloadIconDrawable = (PreloadIconDrawable) mIcon;
619 preloadIconDrawable.setLevel(progressLevel);
620 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700621 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800622 preloadIconDrawable = makePreloadIcon();
623 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700624 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800625 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400626 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700627 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400628 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700629
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800630 /**
631 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
632 * object.
633 */
634 @Nullable
635 public PreloadIconDrawable makePreloadIcon() {
636 if (!(getTag() instanceof ItemInfoWithIcon)) {
637 return null;
638 }
639
640 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
641 int progressLevel = info.getProgressLevel();
642 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
643
644 preloadDrawable.setLevel(progressLevel);
645 preloadDrawable.setIsDisabled(!info.isAppStartable());
646
647 return preloadDrawable;
648 }
649
Tony Wickhamf34bee82018-12-03 18:11:39 -0800650 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800651 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800652 boolean wasDotted = mDotInfo != null;
653 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
654 boolean isDotted = mDotInfo != null;
655 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700656 if (mDisplay == DISPLAY_ALL_APPS) {
657 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
658 } else {
659 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
660 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800661 if (wasDotted || isDotted) {
662 // Animate when a dot is first added or when it is removed.
663 if (animate && (wasDotted ^ isDotted) && isShown()) {
664 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800665 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800666 cancelDotScaleAnim();
667 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800668 invalidate();
669 }
670 }
Tony Wickham305e9202018-01-23 17:46:47 -0800671 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700672 if (itemInfo.isDisabled()) {
673 setContentDescription(getContext().getString(R.string.disabled_app_label,
674 itemInfo.contentDescription));
675 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800676 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800677 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800678 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800679 } else {
680 setContentDescription(itemInfo.contentDescription);
681 }
682 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800683 }
684 }
685
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800686 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
687 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
688 != 0) {
689 String percentageString = NumberFormat.getPercentInstance()
690 .format(progressLevel * 0.01);
691 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
692 setContentDescription(getContext()
693 .getString(
694 R.string.app_installing_title, info.title, percentageString));
695 } else if ((info.runtimeStatusFlags
696 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
697 setContentDescription(getContext()
698 .getString(
699 R.string.app_downloading_title, info.title, percentageString));
700 }
701 }
702 }
703
Winson Chungb745afb2015-03-02 11:51:23 -0800704 /**
705 * Sets the icon for this view based on the layout direction.
706 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700707 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700708 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700709 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700710 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700711 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800712 if (mIcon != null) {
713 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
714 }
Tony17b7f9b2017-05-23 12:19:09 -0700715 }
716
Jon Miranda9b78e192019-08-30 18:42:01 -0700717 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700718 public void setIconVisible(boolean visible) {
719 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700720 if (!mIsIconVisible) {
721 resetIconScale();
722 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700723 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700724 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700725 }
726
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400727 protected boolean iconUpdateAnimationEnabled() {
728 return mEnableIconUpdateAnimation;
729 }
730
Tony Wickham377ed3f2016-07-20 15:21:04 -0700731 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700732 // If we had already set an icon before, disable relayout as the icon size is the
733 // same as before.
734 mDisableRelayout = mIcon != null;
735
736 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700737
738 updateIcon(icon);
739
740 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400741 if (mIcon != null
742 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400743 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000744 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800745 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700746
Sunny Goyal66dccad2018-03-19 12:00:51 -0700747 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800748 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700749
Sunny Goyal69b75642015-05-15 17:00:24 -0700750 @Override
751 public void requestLayout() {
752 if (!mDisableRelayout) {
753 super.requestLayout();
754 }
755 }
756
Sunny Goyal34b65272015-03-11 16:56:52 -0700757 /**
758 * Applies the item info if it is same as what the view is pointing to currently.
759 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800760 @Override
761 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700762 if (getTag() == info) {
763 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700764 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400765 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700766
Jon Miranda7f522a22017-07-28 11:56:47 -0700767 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700768 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700769
Sunny Goyal34b65272015-03-11 16:56:52 -0700770 if (info instanceof AppInfo) {
771 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700772 } else if (info instanceof WorkspaceItemInfo) {
773 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700774 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700775 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700776 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600777 } else if (info instanceof SearchActionItemInfo) {
778 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700779 }
Winsonc0880492015-08-21 11:16:27 -0700780
Sunny Goyal69b75642015-05-15 17:00:24 -0700781 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400782 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700783 }
784 }
785
786 /**
787 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
788 */
789 public void verifyHighRes() {
790 if (mIconLoadRequest != null) {
791 mIconLoadRequest.cancel();
792 mIconLoadRequest = null;
793 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800794 if (getTag() instanceof ItemInfoWithIcon) {
795 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700796 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800797 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700798 .updateIconInBackground(BubbleTextView.this, info);
799 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700800 }
801 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700802
Jon Miranda47170112017-03-03 14:57:14 -0800803 public int getIconSize() {
804 return mIconSize;
805 }
Adam Cohen65086992020-02-19 08:40:49 -0800806
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700807 private void updateTranslation() {
808 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
809 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700810 }
811
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700812 public void setReorderBounceOffset(float x, float y) {
813 mTranslationForReorderBounce.set(x, y);
814 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700815 }
816
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700817 public void getReorderBounceOffset(PointF offset) {
818 offset.set(mTranslationForReorderBounce);
819 }
820
821 @Override
822 public void setReorderPreviewOffset(float x, float y) {
823 mTranslationForReorderPreview.set(x, y);
824 updateTranslation();
825 }
826
827 @Override
828 public void getReorderPreviewOffset(PointF offset) {
829 offset.set(mTranslationForReorderPreview);
830 }
831
832 public void setReorderBounceScale(float scale) {
833 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700834 super.setScaleX(scale);
835 super.setScaleY(scale);
836 }
837
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700838 public float getReorderBounceScale() {
839 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700840 }
841
842 public View getView() {
843 return this;
844 }
845
Adam Cohen65086992020-02-19 08:40:49 -0800846 @Override
847 public int getViewType() {
848 return DRAGGABLE_ICON;
849 }
850
851 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700852 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800853 DeviceProfile grid = mActivity.getDeviceProfile();
854 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
855 }
856
Adam Cohenc77bc452020-05-07 11:55:19 -0700857 private int getIconSizeForDisplay(int display) {
858 DeviceProfile grid = mActivity.getDeviceProfile();
859 switch (display) {
860 case DISPLAY_ALL_APPS:
861 return grid.allAppsIconSizePx;
862 case DISPLAY_WORKSPACE:
863 case DISPLAY_FOLDER:
864 default:
865 return grid.iconSizePx;
866 }
867 }
868
869 public void getSourceVisualDragBounds(Rect bounds) {
870 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
871 }
872
Adam Cohen65086992020-02-19 08:40:49 -0800873 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700874 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700875 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800876 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -0700877 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800878 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700879
880 private void resetIconScale() {
881 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -0700882 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700883 }
884 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700885
886 private void updateIcon(Drawable newIcon) {
887 if (mLayoutHorizontal) {
888 setCompoundDrawablesRelative(newIcon, null, null, null);
889 } else {
890 setCompoundDrawables(null, newIcon, null, null);
891 }
892 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800893}