blob: 6302739bc5639fbc565b89132a29ce55d73108ac [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 Goyal0d69cb62021-10-04 15:31:38 -070019import static com.android.launcher3.config.FeatureFlags.ENABLE_ICON_LABEL_AUTO_SCALING;
Sunny Goyal14168432019-10-24 15:59:49 -070020import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyald872a972021-11-24 18:07:04 -080021import static com.android.launcher3.icons.BitmapInfo.FLAG_NO_BADGE;
22import static com.android.launcher3.icons.BitmapInfo.FLAG_THEMED;
Sunny Goyal066ace12018-11-05 11:08:31 -080023import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
24
Tony4043b052018-08-17 13:47:39 -070025import android.animation.Animator;
26import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080027import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070029import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070030import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070032import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070033import android.graphics.Paint;
Adam Cohend9162062020-03-24 16:35:35 -070034import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080035import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070036import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037import android.graphics.drawable.Drawable;
Steven Ng707b1182021-09-13 11:54:58 +010038import android.icu.text.MessageFormat;
Sunny Goyal0d69cb62021-10-04 15:31:38 -070039import android.text.TextPaint;
Andy Wickham56be73b2022-01-18 09:13:43 -080040import android.text.TextUtils;
Sunny Goyal66dccad2018-03-19 12:00:51 -070041import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080042import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080043import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070044import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070045import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080046import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070047import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080048import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080049import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070050
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000051import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080052import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070053
Schneider Victor-tuliasbdb0dd82021-11-03 16:26:41 -070054import com.android.launcher3.accessibility.BaseAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080055import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080056import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070057import com.android.launcher3.folder.FolderIcon;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070058import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080059import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080060import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070061import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080062import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyal572aca42021-03-24 15:21:39 -070063import com.android.launcher3.icons.PlaceHolderIconDrawable;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080064import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070065import com.android.launcher3.model.data.AppInfo;
66import com.android.launcher3.model.data.ItemInfo;
67import com.android.launcher3.model.data.ItemInfoWithIcon;
68import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060069import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070070import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070071import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080072import com.android.launcher3.views.ActivityContext;
sfufa@google.comd7bdd972021-10-19 12:41:56 -070073import com.android.launcher3.views.BubbleTextHolder;
Jon Miranda9b78e192019-08-30 18:42:01 -070074import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070075
Sunny Goyalc469aad2015-10-01 11:24:23 -070076import java.text.NumberFormat;
Steven Ng707b1182021-09-13 11:54:58 +010077import java.util.HashMap;
78import java.util.Locale;
Sunny Goyalc469aad2015-10-01 11:24:23 -070079
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080/**
81 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
82 * because we want to make the bubble taller than the text and TextView's clip is
83 * too aggressive.
84 */
Sunny Goyalb65d7662021-03-07 15:09:11 -080085public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080086 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070087
Sunny Goyaldfaccf62015-05-11 16:30:44 -070088 private static final int DISPLAY_WORKSPACE = 0;
89 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070090 private static final int DISPLAY_FOLDER = 2;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -070091 protected static final int DISPLAY_TASKBAR = 5;
92 private static final int DISPLAY_SEARCH_RESULT = 6;
93 private static final int DISPLAY_SEARCH_RESULT_SMALL = 7;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070094
Sunny Goyal486adb02021-10-21 11:29:52 -070095 private static final float MIN_LETTER_SPACING = -0.05f;
Sunny Goyal0d69cb62021-10-04 15:31:38 -070096 private static final int MAX_SEARCH_LOOP_COUNT = 20;
97
Samuel Fufad6bacdc2020-08-23 21:56:07 -070098 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070099
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700100 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
101 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
102
Nick Chameyev4dd41592021-08-27 14:11:53 +0100103 private float mTranslationXForTaskbarAlignmentAnimation = 0f;
104
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100105 private final PointF mTranslationForMoveFromCenterAnimation = new PointF(0, 0);
106
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700107 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800108
Tony Wickhamf34bee82018-12-03 18:11:39 -0800109 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
110 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800111 @Override
112 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800113 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800114 }
115
116 @Override
117 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800118 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800119 bubbleTextView.invalidate();
120 }
121 };
122
Sunny Goyaled7a6932018-04-13 11:41:50 -0700123 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
124 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700125 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700126 public Float get(BubbleTextView bubbleTextView) {
127 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700128 }
129
130 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700131 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700132 bubbleTextView.setTextAlpha(alpha);
133 }
134 };
135
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800136 private final ActivityContext mActivity;
Sunny Goyalc4c32692021-05-21 14:23:29 -0700137 private FastBitmapDrawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800138 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700139
Tony Wickham794fe4f2021-01-11 14:54:23 -0600140 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700141
Sunny Goyaled7a6932018-04-13 11:41:50 -0700142 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700143
144 private final boolean mLayoutHorizontal;
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700145 private final boolean mIsRtl;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700146 private final int mIconSize;
147
148 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyald872a972021-11-24 18:07:04 -0800149 private boolean mHideBadge = false;
150 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700151 private boolean mIsIconVisible = true;
152 @ViewDebug.ExportedProperty(category = "launcher")
153 private int mTextColor;
154 @ViewDebug.ExportedProperty(category = "launcher")
Jon Spivack68862142021-10-28 18:37:19 -0700155 private ColorStateList mTextColorStateList;
156 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700157 private float mTextAlpha = 1;
158
Tony4043b052018-08-17 13:47:39 -0700159 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800160 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800161 private DotRenderer mDotRenderer;
162 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700163 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800164 private Animator mDotScaleAnim;
165 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700166
Sunny Goyal4ffec482016-02-09 11:28:52 -0800167 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800168 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800169 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700170 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800171 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700172 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500173
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800174 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700175
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400176 private boolean mEnableIconUpdateAnimation = false;
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700177 private BubbleTextHolder mBubbleTextHolder;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400178
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700180 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 }
182
183 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700184 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 }
186
187 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
188 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800189 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700190
Adam Cohen96bb7982014-07-07 11:58:56 -0700191 TypedArray a = context.obtainStyledAttributes(attrs,
192 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800193 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700194 mIsRtl = (getResources().getConfiguration().getLayoutDirection()
195 == View.LAYOUT_DIRECTION_RTL);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700196 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700197
Samuel Fufac96fa242019-09-26 23:06:32 -0700198 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700199 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700200 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700201 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700202 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700203 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500204 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700205 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700206 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
207 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700208 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700209 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700210 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700211 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700212 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700213 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
214 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
215 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
216 defaultIconSize = getResources().getDimensionPixelSize(
217 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600218 } else if (mDisplay == DISPLAY_TASKBAR) {
219 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700220 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700221 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700222 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700223 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700224
Winson1f064272016-07-18 17:18:02 -0700225 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700226
227 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
228 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700229 a.recycle();
230
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800231 mLongPressHelper = new CheckLongPressHelper(this);
232
Tony Wickham8912b042018-11-29 15:28:53 -0800233 mDotParams = new DotRenderer.DrawParams();
234
Sunny Goyal66dccad2018-03-19 12:00:51 -0700235 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700236 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700237 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238 }
239
Sunny Goyal66dccad2018-03-19 12:00:51 -0700240 @Override
241 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
242 // Disable marques when not focused to that, so that updating text does not cause relayout.
243 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
244 super.onFocusChanged(focused, direction, previouslyFocusedRect);
245 }
246
Sunny Goyald872a972021-11-24 18:07:04 -0800247 public void setHideBadge(boolean hideBadge) {
248 mHideBadge = hideBadge;
249 }
250
Jon Miranda52549442017-10-26 11:28:06 -0700251 /**
252 * Resets the view so it can be recycled.
253 */
254 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800255 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800256 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800257 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800258 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800259 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800260 setBackground(null);
Sunny Goyal3946ecd2022-04-20 09:51:48 -0700261
262 setTag(null);
263 if (mIconLoadRequest != null) {
264 mIconLoadRequest.cancel();
265 mIconLoadRequest = null;
266 }
Jon Miranda52549442017-10-26 11:28:06 -0700267 }
268
Tony Wickhamf34bee82018-12-03 18:11:39 -0800269 private void cancelDotScaleAnim() {
270 if (mDotScaleAnim != null) {
271 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700272 }
273 }
274
Tony Wickhamf34bee82018-12-03 18:11:39 -0800275 private void animateDotScale(float... dotScales) {
276 cancelDotScaleAnim();
277 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
278 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700279 @Override
280 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800281 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700282 }
283 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800284 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700285 }
286
Hyunyoung Song5809a402021-02-02 01:19:18 -0800287 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700288 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700289 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
290 }
291
292 @UiThread
293 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700294 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700295 }
296
Tony Wickham175d1522021-08-25 09:18:41 -0700297 /**
298 * Returns whether the newInfo differs from the current getTag().
299 */
300 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
301 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
302 ? (WorkspaceItemInfo) getTag()
303 : null;
304 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
305 && newInfo.getTargetComponent() != null
306 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
307 return changedIcons && isShown();
308 }
309
Adam Cohen29794c52019-06-21 12:50:30 -0700310 @Override
311 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
Schneider Victor-tuliasbdb0dd82021-11-03 16:26:41 -0700312 if (delegate instanceof BaseAccessibilityDelegate) {
Adam Cohen29794c52019-06-21 12:50:30 -0700313 super.setAccessibilityDelegate(delegate);
314 } else {
315 // NO-OP
316 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
317 // delegate incorrectly. There are no cases when we shouldn't be using the
318 // LauncherAccessibilityDelegate for BubbleTextView.
319 }
320 }
321
Hyunyoung Song5809a402021-02-02 01:19:18 -0800322 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700323 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800324 applyIconAndLabel(info);
sfufa@google.comca76de02021-09-24 08:55:48 -0700325 setItemInfo(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000326 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800327 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800328 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800329 }
330
Hyunyoung Song5809a402021-02-02 01:19:18 -0800331 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700332 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800333 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700334
Sunny Goyal95899162019-03-27 16:03:06 -0700335 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700336 setItemInfo(info);
337
Sunny Goyal34b65272015-03-11 16:56:52 -0700338
339 // Verify high res immediately
340 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800341
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000342 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800343 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700344 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800345 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800346 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700347 }
348
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700349 /**
350 * Apply label and tag using a generic {@link ItemInfoWithIcon}
351 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800352 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700353 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800354 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700355 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700356 setItemInfo(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700357
358 // Verify high res immediately
359 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800360
361 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700362 }
363
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700364 private void setItemInfo(ItemInfoWithIcon itemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700365 setTag(itemInfo);
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700366 if (mBubbleTextHolder != null) {
367 mBubbleTextHolder.onItemInfoUpdated(itemInfo);
sfufa@google.comca76de02021-09-24 08:55:48 -0700368 }
Samuel Fufa02be2a42020-09-23 00:45:27 -0700369 }
370
Sunny Goyal3946ecd2022-04-20 09:51:48 -0700371 public void setBubbleTextHolder(BubbleTextHolder bubbleTextHolder) {
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700372 mBubbleTextHolder = bubbleTextHolder;
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700373 }
374
Hyunyoung Song5809a402021-02-02 01:19:18 -0800375 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600376 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700377 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
378 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyald872a972021-11-24 18:07:04 -0800379 int flags = useTheme ? FLAG_THEMED : 0;
380 if (mHideBadge) {
381 flags |= FLAG_NO_BADGE;
382 }
383 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), flags);
Stefan Andonian1d577062022-03-08 23:21:58 +0000384 mDotParams.color = iconDrawable.getIconColor();
Sunny Goyalf4204382016-07-13 10:46:07 -0700385 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000386 applyLabel(info);
387 }
388
Hyunyoung Song5809a402021-02-02 01:19:18 -0800389 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000390 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700391 setText(info.title);
392 if (info.contentDescription != null) {
393 setContentDescription(info.isDisabled()
394 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
395 : info.contentDescription);
396 }
397 }
398
Winson Chung7501adf2015-06-02 11:24:28 -0700399 /**
400 * Overrides the default long press timeout.
401 */
Tony2ca999c2018-09-24 17:24:51 -0400402 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
403 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700404 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700405
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800406 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800407 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700408 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800409 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800410 }
Sunny Goyal508da152014-08-14 10:53:27 -0700411 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800412
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800413 @Override
414 protected int[] onCreateDrawableState(int extraSpace) {
415 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
416 if (mStayPressed) {
417 mergeDrawableStates(drawableState, STATE_PRESSED);
418 }
419 return drawableState;
420 }
421
Winson Chungb745afb2015-03-02 11:51:23 -0800422 /** Returns the icon for this view. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700423 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800424 return mIcon;
425 }
426
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700427 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800428 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700429 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700430 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700431 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700432 return false;
433 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700434 if (isLongClickable()) {
435 super.onTouchEvent(event);
436 mLongPressHelper.onTouchEvent(event);
437 // Keep receiving the rest of the events
438 return true;
439 } else {
440 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700441 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800442 }
443
Sunny Goyal44a3b202020-07-09 08:27:06 -0700444 /**
445 * Returns true if the touch down at the provided position be ignored
446 */
447 protected boolean shouldIgnoreTouchDown(float x, float y) {
Tony Wickham42b03952021-08-31 10:41:36 -0700448 if (mDisplay == DISPLAY_TASKBAR) {
449 // Allow touching within padding on taskbar, given icon sizes are smaller.
450 return false;
451 }
Sunny Goyal44a3b202020-07-09 08:27:06 -0700452 return y < getPaddingTop()
453 || x < getPaddingLeft()
454 || y > getHeight() - getPaddingBottom()
455 || x > getWidth() - getPaddingRight();
456 }
457
Michael Jurkaddd62e92011-02-16 17:49:14 -0800458 void setStayPressed(boolean stayPressed) {
459 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800460 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800461 }
462
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700463 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800464 public void onVisibilityAggregated(boolean isVisible) {
465 super.onVisibilityAggregated(isVisible);
466 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800467 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800468 }
469 }
470
Tony Wickham8ac277e2021-05-24 15:47:38 -0700471 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700472 setPressed(false);
473 setStayPressed(false);
474 }
475
476 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700477 public boolean onKeyUp(int keyCode, KeyEvent event) {
478 // Unlike touch events, keypress event propagate pressed state change immediately,
479 // without waiting for onClickHandler to execute. Disable pressed state changes here
480 // to avoid flickering.
481 mIgnorePressedStateChange = true;
482 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700483 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800484 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700485 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800486 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800487
Sunny Goyal0d69cb62021-10-04 15:31:38 -0700488 @Override
489 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
490 super.onSizeChanged(w, h, oldw, oldh);
491 checkForEllipsis();
492 }
493
494 @Override
495 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
496 super.onTextChanged(text, start, lengthBefore, lengthAfter);
497 checkForEllipsis();
498 }
499
500 private void checkForEllipsis() {
501 if (!ENABLE_ICON_LABEL_AUTO_SCALING.get()) {
502 return;
503 }
504 float width = getWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();
505 if (width <= 0) {
506 return;
507 }
508 setLetterSpacing(0);
509
510 String text = getText().toString();
511 TextPaint paint = getPaint();
512 if (paint.measureText(text) < width) {
513 return;
514 }
515
516 float spacing = findBestSpacingValue(paint, text, width, MIN_LETTER_SPACING);
517 // Reset the paint value so that the call to TextView does appropriate diff.
518 paint.setLetterSpacing(0);
519 setLetterSpacing(spacing);
520 }
521
522 /**
523 * Find the appropriate text spacing to display the provided text
524 * @param paint the paint used by the text view
525 * @param text the text to display
526 * @param allowedWidthPx available space to render the text
527 * @param minSpacingEm minimum spacing allowed between characters
528 * @return the final textSpacing value
529 *
530 * @see #setLetterSpacing(float)
531 */
532 private float findBestSpacingValue(TextPaint paint, String text, float allowedWidthPx,
533 float minSpacingEm) {
534 paint.setLetterSpacing(minSpacingEm);
535 if (paint.measureText(text) > allowedWidthPx) {
536 // If there is no result at high limit, we can do anything more
537 return minSpacingEm;
538 }
539
540 float lowLimit = 0;
541 float highLimit = minSpacingEm;
542
543 for (int i = 0; i < MAX_SEARCH_LOOP_COUNT; i++) {
544 float value = (lowLimit + highLimit) / 2;
545 paint.setLetterSpacing(value);
546 if (paint.measureText(text) < allowedWidthPx) {
547 highLimit = value;
548 } else {
549 lowLimit = value;
550 }
551 }
552
553 // At the end error on the higher side
554 return highLimit;
555 }
556
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700557 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800558 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700559 super.onDraw(canvas);
560 }
561
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800562 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700563 public void onDraw(Canvas canvas) {
564 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800565 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700566 }
567
Tony Wickham1237df02017-02-24 08:59:36 -0800568 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800569 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700570 *
Tony Wickham1237df02017-02-24 08:59:36 -0800571 * @param canvas The canvas to draw to.
572 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800573 protected void drawDotIfNecessary(Canvas canvas) {
574 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800575 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700576 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
577 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800578 final int scrollX = getScrollX();
579 final int scrollY = getScrollY();
580 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800581 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800582 canvas.translate(-scrollX, -scrollY);
583 }
584 }
585
Jon Miranda9b78e192019-08-30 18:42:01 -0700586 @Override
587 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800588 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800589 return;
590 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800591 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800592
Tony Wickhamf34bee82018-12-03 18:11:39 -0800593 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800594 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800595 } else if (hasDot()) {
596 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800597 }
598 }
599
Tony Wickhamf34bee82018-12-03 18:11:39 -0800600 private boolean hasDot() {
601 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800602 }
603
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700604 /**
605 * Get the icon bounds on the view depending on the layout type.
606 */
Tony Wickham1237df02017-02-24 08:59:36 -0800607 public void getIconBounds(Rect outBounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700608 getIconBounds(mIconSize, outBounds);
Tony05d98c22018-07-23 08:01:15 -0700609 }
610
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700611 /**
612 * Get the icon bounds on the view depending on the layout type.
613 */
614 public void getIconBounds(int iconSize, Rect outBounds) {
615 Utilities.setRectToViewCenter(this, iconSize, outBounds);
616 if (mLayoutHorizontal) {
617 if (mIsRtl) {
618 outBounds.offsetTo(getWidth() - iconSize - getPaddingRight(), outBounds.top);
619 } else {
620 outBounds.offsetTo(getPaddingLeft(), outBounds.top);
621 }
622 } else {
623 outBounds.offsetTo(outBounds.left, getPaddingTop());
624 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800625 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400626
Jon Miranda228877d2021-02-09 11:05:00 -0500627 /**
628 * Sets whether to vertically center the content.
629 */
630 public void setCenterVertically(boolean centerVertically) {
631 mCenterVertically = centerVertically;
632 }
633
Joe Onorato9c1289c2009-08-17 11:03:03 -0400634 @Override
Winson1f064272016-07-18 17:18:02 -0700635 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
636 if (mCenterVertically) {
637 Paint.FontMetrics fm = getPaint().getFontMetrics();
638 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
639 (int) Math.ceil(fm.bottom - fm.top);
640 int height = MeasureSpec.getSize(heightMeasureSpec);
641 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
642 getPaddingBottom());
643 }
644 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
645 }
646
647 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700648 public void setTextColor(int color) {
649 mTextColor = color;
Jon Spivack68862142021-10-28 18:37:19 -0700650 mTextColorStateList = null;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700651 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700652 }
653
Adam Cohen96bb7982014-07-07 11:58:56 -0700654 @Override
655 public void setTextColor(ColorStateList colors) {
656 mTextColor = colors.getDefaultColor();
Jon Spivack68862142021-10-28 18:37:19 -0700657 mTextColorStateList = colors;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700658 if (Float.compare(mTextAlpha, 1) == 0) {
659 super.setTextColor(colors);
660 } else {
661 super.setTextColor(getModifiedColor());
662 }
Adam Cohen477828c2013-09-20 12:05:49 -0700663 }
664
Tony7308cde2017-06-27 22:38:33 -0700665 public boolean shouldTextBeVisible() {
666 // Text should be visible everywhere but the hotseat.
667 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
668 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700669 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
670 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700671 }
672
Winson Chung5f8afe62013-08-12 16:19:28 -0700673 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700674 setTextAlpha(visible ? 1 : 0);
675 }
676
677 private void setTextAlpha(float alpha) {
678 mTextAlpha = alpha;
Jon Spivack68862142021-10-28 18:37:19 -0700679 if (mTextColorStateList != null) {
680 setTextColor(mTextColorStateList);
681 } else {
682 super.setTextColor(getModifiedColor());
683 }
Sunny Goyaled7a6932018-04-13 11:41:50 -0700684 }
685
686 private int getModifiedColor() {
687 if (mTextAlpha == 0) {
688 // Special case to prevent text shadows in high contrast mode
689 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700690 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800691 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700692 }
693
694 /**
695 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700696 *
Tony8f402802017-06-16 17:24:54 -0700697 * @param fadeIn Whether the text should fade in or fade out.
698 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700699 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700700 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700701 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700702 }
703
Winson Chungaffd7b42010-08-20 15:11:56 -0700704 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800705 public void cancelLongPress() {
706 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800707 mLongPressHelper.cancelLongPress();
708 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500709
Samuel Fufac2820182021-01-22 11:47:25 -0600710 /**
711 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000712 *
713 * If this app is installing, the progress bar will be updated with the installation progress.
714 * If this app is installed and downloading incrementally, the progress bar will be updated
715 * with the total download progress.
716 */
717 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800718 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700719 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000720 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
721 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800722 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000723 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800724 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
725 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700726 }
727 }
728 }
729
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800730 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
731 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000732 if (preloadDrawable != null && maybePerformFinishedAnimation) {
733 preloadDrawable.maybePerformFinishedAnimation();
734 }
735 }
736
737 /** Applies the given progress level to the this icon's progress bar. */
738 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800739 public PreloadIconDrawable applyProgressLevel() {
740 if (!(getTag() instanceof ItemInfoWithIcon)) {
741 return null;
742 }
743
744 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
745 int progressLevel = info.getProgressLevel();
746 if (progressLevel >= 100) {
747 setContentDescription(info.contentDescription != null
748 ? info.contentDescription : "");
749 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800750 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800751 } else {
752 setContentDescription(getContext()
753 .getString(R.string.app_waiting_download_title, info.title));
754 }
755 if (mIcon != null) {
756 PreloadIconDrawable preloadIconDrawable;
757 if (mIcon instanceof PreloadIconDrawable) {
758 preloadIconDrawable = (PreloadIconDrawable) mIcon;
759 preloadIconDrawable.setLevel(progressLevel);
760 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700761 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800762 preloadIconDrawable = makePreloadIcon();
763 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700764 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800765 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400766 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700767 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400768 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700769
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800770 /**
771 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
772 * object.
773 */
774 @Nullable
775 public PreloadIconDrawable makePreloadIcon() {
776 if (!(getTag() instanceof ItemInfoWithIcon)) {
777 return null;
778 }
779
780 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
781 int progressLevel = info.getProgressLevel();
782 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
783
784 preloadDrawable.setLevel(progressLevel);
785 preloadDrawable.setIsDisabled(!info.isAppStartable());
786
787 return preloadDrawable;
788 }
789
Tony Wickhamf34bee82018-12-03 18:11:39 -0800790 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800791 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800792 boolean wasDotted = mDotInfo != null;
793 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
794 boolean isDotted = mDotInfo != null;
795 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700796 if (mDisplay == DISPLAY_ALL_APPS) {
797 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
798 } else {
799 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
800 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800801 if (wasDotted || isDotted) {
802 // Animate when a dot is first added or when it is removed.
803 if (animate && (wasDotted ^ isDotted) && isShown()) {
804 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800805 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800806 cancelDotScaleAnim();
807 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800808 invalidate();
809 }
810 }
Andy Wickham56be73b2022-01-18 09:13:43 -0800811 if (!TextUtils.isEmpty(itemInfo.contentDescription)) {
vadimtda6dad52019-05-21 13:24:23 -0700812 if (itemInfo.isDisabled()) {
813 setContentDescription(getContext().getString(R.string.disabled_app_label,
814 itemInfo.contentDescription));
815 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800816 int count = mDotInfo.getNotificationCount();
Steven Ng707b1182021-09-13 11:54:58 +0100817 setContentDescription(
818 getAppLabelPluralString(itemInfo.contentDescription.toString(), count));
Tony Wickham305e9202018-01-23 17:46:47 -0800819 } else {
820 setContentDescription(itemInfo.contentDescription);
821 }
822 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800823 }
824 }
825
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800826 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
827 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
828 != 0) {
829 String percentageString = NumberFormat.getPercentInstance()
830 .format(progressLevel * 0.01);
831 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
832 setContentDescription(getContext()
833 .getString(
834 R.string.app_installing_title, info.title, percentageString));
835 } else if ((info.runtimeStatusFlags
836 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
837 setContentDescription(getContext()
838 .getString(
839 R.string.app_downloading_title, info.title, percentageString));
840 }
841 }
842 }
843
Winson Chungb745afb2015-03-02 11:51:23 -0800844 /**
845 * Sets the icon for this view based on the layout direction.
846 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700847 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700848 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700849 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700850 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700851 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800852 if (mIcon != null) {
853 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
854 }
Tony17b7f9b2017-05-23 12:19:09 -0700855 }
856
Jon Miranda9b78e192019-08-30 18:42:01 -0700857 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700858 public void setIconVisible(boolean visible) {
859 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700860 if (!mIsIconVisible) {
861 resetIconScale();
862 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700863 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700864 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700865 }
866
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400867 protected boolean iconUpdateAnimationEnabled() {
868 return mEnableIconUpdateAnimation;
869 }
870
Tony Wickham377ed3f2016-07-20 15:21:04 -0700871 protected void applyCompoundDrawables(Drawable icon) {
Jon Mirandafe749972022-03-15 10:02:39 -0700872 if (icon == null) {
873 // Icon can be null when we use the BubbleTextView for text only.
874 return;
875 }
876
Sunny Goyal66dccad2018-03-19 12:00:51 -0700877 // If we had already set an icon before, disable relayout as the icon size is the
878 // same as before.
879 mDisableRelayout = mIcon != null;
880
881 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700882
883 updateIcon(icon);
884
885 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400886 if (mIcon != null
887 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400888 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000889 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800890 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700891
Sunny Goyal66dccad2018-03-19 12:00:51 -0700892 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800893 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700894
Sunny Goyal69b75642015-05-15 17:00:24 -0700895 @Override
896 public void requestLayout() {
897 if (!mDisableRelayout) {
898 super.requestLayout();
899 }
900 }
901
Sunny Goyal34b65272015-03-11 16:56:52 -0700902 /**
903 * Applies the item info if it is same as what the view is pointing to currently.
904 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800905 @Override
906 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700907 if (getTag() == info) {
908 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700909 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400910 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700911
Jon Miranda7f522a22017-07-28 11:56:47 -0700912 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700913 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700914
Sunny Goyal34b65272015-03-11 16:56:52 -0700915 if (info instanceof AppInfo) {
916 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700917 } else if (info instanceof WorkspaceItemInfo) {
918 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700919 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700920 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700921 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600922 } else if (info instanceof SearchActionItemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700923 applyFromItemInfoWithIcon((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700924 }
Winsonc0880492015-08-21 11:16:27 -0700925
Sunny Goyal69b75642015-05-15 17:00:24 -0700926 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400927 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700928 }
929 }
930
931 /**
932 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
933 */
934 public void verifyHighRes() {
935 if (mIconLoadRequest != null) {
936 mIconLoadRequest.cancel();
937 mIconLoadRequest = null;
938 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800939 if (getTag() instanceof ItemInfoWithIcon) {
940 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700941 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800942 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700943 .updateIconInBackground(BubbleTextView.this, info);
944 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700945 }
946 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700947
Jon Miranda47170112017-03-03 14:57:14 -0800948 public int getIconSize() {
949 return mIconSize;
950 }
Adam Cohen65086992020-02-19 08:40:49 -0800951
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700952 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100953 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
Nick Chameyev4dd41592021-08-27 14:11:53 +0100954 + mTranslationForMoveFromCenterAnimation.x
955 + mTranslationXForTaskbarAlignmentAnimation);
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100956 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
957 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700958 }
959
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700960 public void setReorderBounceOffset(float x, float y) {
961 mTranslationForReorderBounce.set(x, y);
962 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700963 }
964
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700965 public void getReorderBounceOffset(PointF offset) {
966 offset.set(mTranslationForReorderBounce);
967 }
968
969 @Override
970 public void setReorderPreviewOffset(float x, float y) {
971 mTranslationForReorderPreview.set(x, y);
972 updateTranslation();
973 }
974
975 @Override
976 public void getReorderPreviewOffset(PointF offset) {
977 offset.set(mTranslationForReorderPreview);
978 }
979
980 public void setReorderBounceScale(float scale) {
981 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700982 super.setScaleX(scale);
983 super.setScaleY(scale);
984 }
985
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700986 public float getReorderBounceScale() {
987 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700988 }
989
Nick Chameyev4dd41592021-08-27 14:11:53 +0100990 /**
991 * Sets translation values for move from center animation
992 */
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100993 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
994 mTranslationForMoveFromCenterAnimation.set(x, y);
995 updateTranslation();
996 }
997
Nick Chameyev4dd41592021-08-27 14:11:53 +0100998 /**
999 * Sets translationX for taskbar to launcher alignment animation
1000 */
1001 public void setTranslationXForTaskbarAlignmentAnimation(float translationX) {
1002 mTranslationXForTaskbarAlignmentAnimation = translationX;
1003 updateTranslation();
1004 }
1005
1006 /**
1007 * Returns translationX value for taskbar to launcher alignment animation
1008 */
1009 public float getTranslationXForTaskbarAlignmentAnimation() {
1010 return mTranslationXForTaskbarAlignmentAnimation;
1011 }
1012
Adam Cohend9162062020-03-24 16:35:35 -07001013 public View getView() {
1014 return this;
1015 }
1016
Adam Cohen65086992020-02-19 08:40:49 -08001017 @Override
1018 public int getViewType() {
1019 return DRAGGABLE_ICON;
1020 }
1021
1022 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -07001023 public void getWorkspaceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001024 getIconBounds(mIconSize, bounds);
Adam Cohen65086992020-02-19 08:40:49 -08001025 }
1026
Adam Cohenc77bc452020-05-07 11:55:19 -07001027 public void getSourceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001028 getIconBounds(mIconSize, bounds);
Adam Cohenc77bc452020-05-07 11:55:19 -07001029 }
1030
Adam Cohen65086992020-02-19 08:40:49 -08001031 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -07001032 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001033 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -08001034 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -07001035 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -08001036 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001037
1038 private void resetIconScale() {
Sunny Goyal3946ecd2022-04-20 09:51:48 -07001039 if (mIcon != null) {
1040 mIcon.resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001041 }
1042 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -07001043
1044 private void updateIcon(Drawable newIcon) {
1045 if (mLayoutHorizontal) {
1046 setCompoundDrawablesRelative(newIcon, null, null, null);
1047 } else {
1048 setCompoundDrawables(null, newIcon, null, null);
1049 }
1050 }
Steven Ng707b1182021-09-13 11:54:58 +01001051
1052 private String getAppLabelPluralString(String appName, int notificationCount) {
1053 MessageFormat icuCountFormat = new MessageFormat(
1054 getResources().getString(R.string.dotted_app_label),
1055 Locale.getDefault());
1056 HashMap<String, Object> args = new HashMap();
1057 args.put("app_name", appName);
1058 args.put("count", notificationCount);
1059 return icuCountFormat.format(args);
1060 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001061}