blob: 54920e1e175f5af466c44aba46b5a531e1e3cd6d [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;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -070083 protected static final int DISPLAY_TASKBAR = 5;
84 private static final int DISPLAY_SEARCH_RESULT = 6;
85 private static final int DISPLAY_SEARCH_RESULT_SMALL = 7;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070086
Samuel Fufad6bacdc2020-08-23 21:56:07 -070087 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070088 private static final float HIGHLIGHT_SCALE = 1.16f;
89
Adam Cohen1d13c0b2020-04-21 16:29:12 -070090 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
91 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
92
Nick Chameyev4dd41592021-08-27 14:11:53 +010093 private float mTranslationXForTaskbarAlignmentAnimation = 0f;
94
Nick Chameyev5e8dbe72021-07-26 14:56:50 +010095 private final PointF mTranslationForMoveFromCenterAnimation = new PointF(0, 0);
96
Adam Cohen1d13c0b2020-04-21 16:29:12 -070097 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080098
Tony Wickhamf34bee82018-12-03 18:11:39 -080099 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
100 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800101 @Override
102 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800103 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800104 }
105
106 @Override
107 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800108 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800109 bubbleTextView.invalidate();
110 }
111 };
112
Sunny Goyaled7a6932018-04-13 11:41:50 -0700113 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
114 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700115 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700116 public Float get(BubbleTextView bubbleTextView) {
117 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700118 }
119
120 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700121 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700122 bubbleTextView.setTextAlpha(alpha);
123 }
124 };
125
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800126 private final ActivityContext mActivity;
Sunny Goyalc4c32692021-05-21 14:23:29 -0700127 private FastBitmapDrawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800128 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700129
Tony Wickham794fe4f2021-01-11 14:54:23 -0600130 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700131
Sunny Goyaled7a6932018-04-13 11:41:50 -0700132 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700133
134 private final boolean mLayoutHorizontal;
135 private final int mIconSize;
136
137 @ViewDebug.ExportedProperty(category = "launcher")
138 private boolean mIsIconVisible = true;
139 @ViewDebug.ExportedProperty(category = "launcher")
140 private int mTextColor;
141 @ViewDebug.ExportedProperty(category = "launcher")
142 private float mTextAlpha = 1;
143
Tony4043b052018-08-17 13:47:39 -0700144 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800145 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800146 private DotRenderer mDotRenderer;
147 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700148 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800149 private Animator mDotScaleAnim;
150 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700151
Sunny Goyal4ffec482016-02-09 11:28:52 -0800152 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800153 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800154 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700155 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800156 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700157 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500158
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800159 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700160
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400161 private boolean mEnableIconUpdateAnimation = false;
162
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800163 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700164 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800165 }
166
167 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700168 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169 }
170
171 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
172 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800173 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700174
Adam Cohen96bb7982014-07-07 11:58:56 -0700175 TypedArray a = context.obtainStyledAttributes(attrs,
176 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800177 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700178 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700179
Samuel Fufac96fa242019-09-26 23:06:32 -0700180 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700181 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700182 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700183 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700184 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700185 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500186 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700187 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700188 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
189 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700190 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700191 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700192 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700193 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700194 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700195 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
196 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
197 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
198 defaultIconSize = getResources().getDimensionPixelSize(
199 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600200 } else if (mDisplay == DISPLAY_TASKBAR) {
201 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700202 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700203 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700204 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700205 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700206
Winson1f064272016-07-18 17:18:02 -0700207 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700208
209 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
210 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700211 a.recycle();
212
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800213 mLongPressHelper = new CheckLongPressHelper(this);
214
Tony Wickham8912b042018-11-29 15:28:53 -0800215 mDotParams = new DotRenderer.DrawParams();
216
Sunny Goyal66dccad2018-03-19 12:00:51 -0700217 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700218 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700219 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800220 }
221
Sunny Goyal66dccad2018-03-19 12:00:51 -0700222 @Override
223 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
224 // Disable marques when not focused to that, so that updating text does not cause relayout.
225 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
226 super.onFocusChanged(focused, direction, previouslyFocusedRect);
227 }
228
Jon Miranda52549442017-10-26 11:28:06 -0700229 /**
230 * Resets the view so it can be recycled.
231 */
232 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800233 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800234 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800235 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800236 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800237 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800238 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700239 }
240
Tony Wickhamf34bee82018-12-03 18:11:39 -0800241 private void cancelDotScaleAnim() {
242 if (mDotScaleAnim != null) {
243 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700244 }
245 }
246
Tony Wickhamf34bee82018-12-03 18:11:39 -0800247 private void animateDotScale(float... dotScales) {
248 cancelDotScaleAnim();
249 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
250 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700251 @Override
252 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800253 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700254 }
255 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800256 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700257 }
258
Hyunyoung Song5809a402021-02-02 01:19:18 -0800259 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700260 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700261 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
262 }
263
264 @UiThread
265 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700266 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700267 }
268
Tony Wickham175d1522021-08-25 09:18:41 -0700269 /**
270 * Returns whether the newInfo differs from the current getTag().
271 */
272 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
273 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
274 ? (WorkspaceItemInfo) getTag()
275 : null;
276 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
277 && newInfo.getTargetComponent() != null
278 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
279 return changedIcons && isShown();
280 }
281
Adam Cohen29794c52019-06-21 12:50:30 -0700282 @Override
283 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
284 if (delegate instanceof LauncherAccessibilityDelegate) {
285 super.setAccessibilityDelegate(delegate);
286 } else {
287 // NO-OP
288 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
289 // delegate incorrectly. There are no cases when we shouldn't be using the
290 // LauncherAccessibilityDelegate for BubbleTextView.
291 }
292 }
293
Hyunyoung Song5809a402021-02-02 01:19:18 -0800294 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700295 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800296 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800297 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000298 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800299 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800300 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800301 }
302
Hyunyoung Song5809a402021-02-02 01:19:18 -0800303 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700304 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800305 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700306
Sunny Goyal95899162019-03-27 16:03:06 -0700307 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700308 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700309
310 // Verify high res immediately
311 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800312
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000313 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800314 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700315 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800316 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800317 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700318 }
319
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700320 /**
321 * Apply label and tag using a generic {@link ItemInfoWithIcon}
322 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800323 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700324 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800325 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700326 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700327 super.setTag(info);
328
329 // Verify high res immediately
330 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800331
332 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700333 }
334
Samuel Fufa02be2a42020-09-23 00:45:27 -0700335 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600336 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700337 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800338 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600339 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
340 applyIconAndLabel(searchActionItemInfo);
341 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700342 }
343
Hyunyoung Song5809a402021-02-02 01:19:18 -0800344 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600345 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700346 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
347 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyal9ab43772021-04-23 11:40:58 -0700348 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), useTheme);
Sunny Goyal67555872021-05-21 12:56:55 -0700349 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800350
Sunny Goyalf4204382016-07-13 10:46:07 -0700351 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000352 applyLabel(info);
353 }
354
Hyunyoung Song5809a402021-02-02 01:19:18 -0800355 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000356 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700357 setText(info.title);
358 if (info.contentDescription != null) {
359 setContentDescription(info.isDisabled()
360 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
361 : info.contentDescription);
362 }
363 }
364
Winson Chung7501adf2015-06-02 11:24:28 -0700365 /**
366 * 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. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700389 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800390 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) {
Tony Wickham42b03952021-08-31 10:41:36 -0700414 if (mDisplay == DISPLAY_TASKBAR) {
415 // Allow touching within padding on taskbar, given icon sizes are smaller.
416 return false;
417 }
Sunny Goyal44a3b202020-07-09 08:27:06 -0700418 return y < getPaddingTop()
419 || x < getPaddingLeft()
420 || y > getHeight() - getPaddingBottom()
421 || x > getWidth() - getPaddingRight();
422 }
423
Michael Jurkaddd62e92011-02-16 17:49:14 -0800424 void setStayPressed(boolean stayPressed) {
425 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800426 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800427 }
428
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700429 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800430 public void onVisibilityAggregated(boolean isVisible) {
431 super.onVisibilityAggregated(isVisible);
432 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800433 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800434 }
435 }
436
Tony Wickham8ac277e2021-05-24 15:47:38 -0700437 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700438 setPressed(false);
439 setStayPressed(false);
440 }
441
442 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700443 public boolean onKeyUp(int keyCode, KeyEvent event) {
444 // Unlike touch events, keypress event propagate pressed state change immediately,
445 // without waiting for onClickHandler to execute. Disable pressed state changes here
446 // to avoid flickering.
447 mIgnorePressedStateChange = true;
448 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700449 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800450 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700451 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800452 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800453
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700454 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800455 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700456 super.onDraw(canvas);
457 }
458
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800459 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700460 public void onDraw(Canvas canvas) {
461 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800462 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700463 }
464
Tony Wickham1237df02017-02-24 08:59:36 -0800465 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800466 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700467 *
Tony Wickham1237df02017-02-24 08:59:36 -0800468 * @param canvas The canvas to draw to.
469 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800470 protected void drawDotIfNecessary(Canvas canvas) {
471 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800472 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700473 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
474 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800475 final int scrollX = getScrollX();
476 final int scrollY = getScrollY();
477 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800478 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800479 canvas.translate(-scrollX, -scrollY);
480 }
481 }
482
Jon Miranda9b78e192019-08-30 18:42:01 -0700483 @Override
484 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800485 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800486 return;
487 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800488 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800489
Tony Wickhamf34bee82018-12-03 18:11:39 -0800490 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800491 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800492 } else if (hasDot()) {
493 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800494 }
495 }
496
Tony Wickhamf34bee82018-12-03 18:11:39 -0800497 private boolean hasDot() {
498 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800499 }
500
501 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700502 getIconBounds(this, outBounds, mIconSize);
503 }
504
505 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
506 int top = iconView.getPaddingTop();
507 int left = (iconView.getWidth() - iconSize) / 2;
508 int right = left + iconSize;
509 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800510 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800511 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400512
Jon Miranda228877d2021-02-09 11:05:00 -0500513
514 /**
515 * Sets whether to vertically center the content.
516 */
517 public void setCenterVertically(boolean centerVertically) {
518 mCenterVertically = centerVertically;
519 }
520
Joe Onorato9c1289c2009-08-17 11:03:03 -0400521 @Override
Winson1f064272016-07-18 17:18:02 -0700522 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
523 if (mCenterVertically) {
524 Paint.FontMetrics fm = getPaint().getFontMetrics();
525 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
526 (int) Math.ceil(fm.bottom - fm.top);
527 int height = MeasureSpec.getSize(heightMeasureSpec);
528 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
529 getPaddingBottom());
530 }
531 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
532 }
533
534 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700535 public void setTextColor(int color) {
536 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700537 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700538 }
539
Adam Cohen96bb7982014-07-07 11:58:56 -0700540 @Override
541 public void setTextColor(ColorStateList colors) {
542 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700543 if (Float.compare(mTextAlpha, 1) == 0) {
544 super.setTextColor(colors);
545 } else {
546 super.setTextColor(getModifiedColor());
547 }
Adam Cohen477828c2013-09-20 12:05:49 -0700548 }
549
Tony7308cde2017-06-27 22:38:33 -0700550 public boolean shouldTextBeVisible() {
551 // Text should be visible everywhere but the hotseat.
552 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
553 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700554 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
555 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700556 }
557
Winson Chung5f8afe62013-08-12 16:19:28 -0700558 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700559 setTextAlpha(visible ? 1 : 0);
560 }
561
562 private void setTextAlpha(float alpha) {
563 mTextAlpha = alpha;
564 super.setTextColor(getModifiedColor());
565 }
566
567 private int getModifiedColor() {
568 if (mTextAlpha == 0) {
569 // Special case to prevent text shadows in high contrast mode
570 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700571 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800572 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700573 }
574
575 /**
576 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700577 *
Tony8f402802017-06-16 17:24:54 -0700578 * @param fadeIn Whether the text should fade in or fade out.
579 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700580 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700581 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700582 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700583 }
584
Winson Chungaffd7b42010-08-20 15:11:56 -0700585 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800586 public void cancelLongPress() {
587 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800588 mLongPressHelper.cancelLongPress();
589 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500590
Samuel Fufac2820182021-01-22 11:47:25 -0600591 /**
592 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000593 *
594 * If this app is installing, the progress bar will be updated with the installation progress.
595 * If this app is installed and downloading incrementally, the progress bar will be updated
596 * with the total download progress.
597 */
598 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800599 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700600 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000601 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
602 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800603 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000604 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800605 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
606 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700607 }
608 }
609 }
610
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800611 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
612 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000613 if (preloadDrawable != null && maybePerformFinishedAnimation) {
614 preloadDrawable.maybePerformFinishedAnimation();
615 }
616 }
617
618 /** Applies the given progress level to the this icon's progress bar. */
619 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800620 public PreloadIconDrawable applyProgressLevel() {
621 if (!(getTag() instanceof ItemInfoWithIcon)) {
622 return null;
623 }
624
625 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
626 int progressLevel = info.getProgressLevel();
627 if (progressLevel >= 100) {
628 setContentDescription(info.contentDescription != null
629 ? info.contentDescription : "");
630 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800631 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800632 } else {
633 setContentDescription(getContext()
634 .getString(R.string.app_waiting_download_title, info.title));
635 }
636 if (mIcon != null) {
637 PreloadIconDrawable preloadIconDrawable;
638 if (mIcon instanceof PreloadIconDrawable) {
639 preloadIconDrawable = (PreloadIconDrawable) mIcon;
640 preloadIconDrawable.setLevel(progressLevel);
641 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700642 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800643 preloadIconDrawable = makePreloadIcon();
644 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700645 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800646 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400647 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700648 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400649 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700650
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800651 /**
652 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
653 * object.
654 */
655 @Nullable
656 public PreloadIconDrawable makePreloadIcon() {
657 if (!(getTag() instanceof ItemInfoWithIcon)) {
658 return null;
659 }
660
661 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
662 int progressLevel = info.getProgressLevel();
663 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
664
665 preloadDrawable.setLevel(progressLevel);
666 preloadDrawable.setIsDisabled(!info.isAppStartable());
667
668 return preloadDrawable;
669 }
670
Tony Wickhamf34bee82018-12-03 18:11:39 -0800671 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800672 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800673 boolean wasDotted = mDotInfo != null;
674 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
675 boolean isDotted = mDotInfo != null;
676 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700677 if (mDisplay == DISPLAY_ALL_APPS) {
678 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
679 } else {
680 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
681 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800682 if (wasDotted || isDotted) {
683 // Animate when a dot is first added or when it is removed.
684 if (animate && (wasDotted ^ isDotted) && isShown()) {
685 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800686 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800687 cancelDotScaleAnim();
688 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800689 invalidate();
690 }
691 }
Tony Wickham305e9202018-01-23 17:46:47 -0800692 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700693 if (itemInfo.isDisabled()) {
694 setContentDescription(getContext().getString(R.string.disabled_app_label,
695 itemInfo.contentDescription));
696 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800697 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800698 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800699 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800700 } else {
701 setContentDescription(itemInfo.contentDescription);
702 }
703 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800704 }
705 }
706
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800707 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
708 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
709 != 0) {
710 String percentageString = NumberFormat.getPercentInstance()
711 .format(progressLevel * 0.01);
712 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
713 setContentDescription(getContext()
714 .getString(
715 R.string.app_installing_title, info.title, percentageString));
716 } else if ((info.runtimeStatusFlags
717 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
718 setContentDescription(getContext()
719 .getString(
720 R.string.app_downloading_title, info.title, percentageString));
721 }
722 }
723 }
724
Winson Chungb745afb2015-03-02 11:51:23 -0800725 /**
726 * Sets the icon for this view based on the layout direction.
727 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700728 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700729 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700730 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700731 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700732 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800733 if (mIcon != null) {
734 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
735 }
Tony17b7f9b2017-05-23 12:19:09 -0700736 }
737
Jon Miranda9b78e192019-08-30 18:42:01 -0700738 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700739 public void setIconVisible(boolean visible) {
740 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700741 if (!mIsIconVisible) {
742 resetIconScale();
743 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700744 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700745 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700746 }
747
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400748 protected boolean iconUpdateAnimationEnabled() {
749 return mEnableIconUpdateAnimation;
750 }
751
Tony Wickham377ed3f2016-07-20 15:21:04 -0700752 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700753 // If we had already set an icon before, disable relayout as the icon size is the
754 // same as before.
755 mDisableRelayout = mIcon != null;
756
757 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700758
759 updateIcon(icon);
760
761 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400762 if (mIcon != null
763 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400764 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000765 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800766 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700767
Sunny Goyal66dccad2018-03-19 12:00:51 -0700768 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800769 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700770
Sunny Goyal69b75642015-05-15 17:00:24 -0700771 @Override
772 public void requestLayout() {
773 if (!mDisableRelayout) {
774 super.requestLayout();
775 }
776 }
777
Sunny Goyal34b65272015-03-11 16:56:52 -0700778 /**
779 * Applies the item info if it is same as what the view is pointing to currently.
780 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800781 @Override
782 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700783 if (getTag() == info) {
784 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700785 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400786 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700787
Jon Miranda7f522a22017-07-28 11:56:47 -0700788 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700789 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700790
Sunny Goyal34b65272015-03-11 16:56:52 -0700791 if (info instanceof AppInfo) {
792 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700793 } else if (info instanceof WorkspaceItemInfo) {
794 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700795 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700796 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700797 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600798 } else if (info instanceof SearchActionItemInfo) {
799 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700800 }
Winsonc0880492015-08-21 11:16:27 -0700801
Sunny Goyal69b75642015-05-15 17:00:24 -0700802 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400803 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700804 }
805 }
806
807 /**
808 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
809 */
810 public void verifyHighRes() {
811 if (mIconLoadRequest != null) {
812 mIconLoadRequest.cancel();
813 mIconLoadRequest = null;
814 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800815 if (getTag() instanceof ItemInfoWithIcon) {
816 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700817 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800818 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700819 .updateIconInBackground(BubbleTextView.this, info);
820 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700821 }
822 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700823
Jon Miranda47170112017-03-03 14:57:14 -0800824 public int getIconSize() {
825 return mIconSize;
826 }
Adam Cohen65086992020-02-19 08:40:49 -0800827
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700828 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100829 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
Nick Chameyev4dd41592021-08-27 14:11:53 +0100830 + mTranslationForMoveFromCenterAnimation.x
831 + mTranslationXForTaskbarAlignmentAnimation);
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100832 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
833 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700834 }
835
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700836 public void setReorderBounceOffset(float x, float y) {
837 mTranslationForReorderBounce.set(x, y);
838 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700839 }
840
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700841 public void getReorderBounceOffset(PointF offset) {
842 offset.set(mTranslationForReorderBounce);
843 }
844
845 @Override
846 public void setReorderPreviewOffset(float x, float y) {
847 mTranslationForReorderPreview.set(x, y);
848 updateTranslation();
849 }
850
851 @Override
852 public void getReorderPreviewOffset(PointF offset) {
853 offset.set(mTranslationForReorderPreview);
854 }
855
856 public void setReorderBounceScale(float scale) {
857 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700858 super.setScaleX(scale);
859 super.setScaleY(scale);
860 }
861
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700862 public float getReorderBounceScale() {
863 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700864 }
865
Nick Chameyev4dd41592021-08-27 14:11:53 +0100866 /**
867 * Sets translation values for move from center animation
868 */
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100869 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
870 mTranslationForMoveFromCenterAnimation.set(x, y);
871 updateTranslation();
872 }
873
Nick Chameyev4dd41592021-08-27 14:11:53 +0100874 /**
875 * Sets translationX for taskbar to launcher alignment animation
876 */
877 public void setTranslationXForTaskbarAlignmentAnimation(float translationX) {
878 mTranslationXForTaskbarAlignmentAnimation = translationX;
879 updateTranslation();
880 }
881
882 /**
883 * Returns translationX value for taskbar to launcher alignment animation
884 */
885 public float getTranslationXForTaskbarAlignmentAnimation() {
886 return mTranslationXForTaskbarAlignmentAnimation;
887 }
888
Adam Cohend9162062020-03-24 16:35:35 -0700889 public View getView() {
890 return this;
891 }
892
Adam Cohen65086992020-02-19 08:40:49 -0800893 @Override
894 public int getViewType() {
895 return DRAGGABLE_ICON;
896 }
897
898 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700899 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800900 DeviceProfile grid = mActivity.getDeviceProfile();
901 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
902 }
903
Adam Cohenc77bc452020-05-07 11:55:19 -0700904 private int getIconSizeForDisplay(int display) {
905 DeviceProfile grid = mActivity.getDeviceProfile();
906 switch (display) {
907 case DISPLAY_ALL_APPS:
908 return grid.allAppsIconSizePx;
Adam Cohenc77bc452020-05-07 11:55:19 -0700909 case DISPLAY_FOLDER:
Tony Wickham8ac277e2021-05-24 15:47:38 -0700910 return grid.folderChildIconSizePx;
911 case DISPLAY_WORKSPACE:
Adam Cohenc77bc452020-05-07 11:55:19 -0700912 default:
913 return grid.iconSizePx;
914 }
915 }
916
917 public void getSourceVisualDragBounds(Rect bounds) {
918 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
919 }
920
Adam Cohen65086992020-02-19 08:40:49 -0800921 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700922 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700923 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800924 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -0700925 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800926 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700927
928 private void resetIconScale() {
929 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -0700930 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700931 }
932 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700933
934 private void updateIcon(Drawable newIcon) {
935 if (mLayoutHorizontal) {
936 setCompoundDrawablesRelative(newIcon, null, null, null);
937 } else {
938 setCompoundDrawables(null, newIcon, null, null);
939 }
940 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800941}