blob: 5d41741d6c037c9c6bf83082bf07af4a33f906d7 [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;
Sunny Goyal66dccad2018-03-19 12:00:51 -070040import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080041import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080042import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070043import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070044import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080045import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070046import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080047import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080048import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070049
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000050import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080051import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070052
Schneider Victor-tuliasbdb0dd82021-11-03 16:26:41 -070053import com.android.launcher3.accessibility.BaseAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080054import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080055import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070056import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080057import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070058import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080059import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080060import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070061import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080062import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
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 private static final float HIGHLIGHT_SCALE = 1.16f;
100
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700101 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
102 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
103
Nick Chameyev4dd41592021-08-27 14:11:53 +0100104 private float mTranslationXForTaskbarAlignmentAnimation = 0f;
105
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100106 private final PointF mTranslationForMoveFromCenterAnimation = new PointF(0, 0);
107
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700108 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800109
Tony Wickhamf34bee82018-12-03 18:11:39 -0800110 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
111 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800112 @Override
113 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800114 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800115 }
116
117 @Override
118 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800119 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800120 bubbleTextView.invalidate();
121 }
122 };
123
Sunny Goyaled7a6932018-04-13 11:41:50 -0700124 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
125 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700126 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700127 public Float get(BubbleTextView bubbleTextView) {
128 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700129 }
130
131 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700132 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700133 bubbleTextView.setTextAlpha(alpha);
134 }
135 };
136
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800137 private final ActivityContext mActivity;
Sunny Goyalc4c32692021-05-21 14:23:29 -0700138 private FastBitmapDrawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800139 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700140
Tony Wickham794fe4f2021-01-11 14:54:23 -0600141 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700142
Sunny Goyaled7a6932018-04-13 11:41:50 -0700143 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700144
145 private final boolean mLayoutHorizontal;
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700146 private final boolean mIsRtl;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700147 private final int mIconSize;
148
149 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyald872a972021-11-24 18:07:04 -0800150 private boolean mHideBadge = false;
151 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700152 private boolean mIsIconVisible = true;
153 @ViewDebug.ExportedProperty(category = "launcher")
154 private int mTextColor;
155 @ViewDebug.ExportedProperty(category = "launcher")
Jon Spivack68862142021-10-28 18:37:19 -0700156 private ColorStateList mTextColorStateList;
157 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700158 private float mTextAlpha = 1;
159
Tony4043b052018-08-17 13:47:39 -0700160 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800161 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800162 private DotRenderer mDotRenderer;
163 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700164 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800165 private Animator mDotScaleAnim;
166 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700167
Sunny Goyal4ffec482016-02-09 11:28:52 -0800168 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800169 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800170 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700171 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800172 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700173 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500174
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800175 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700176
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400177 private boolean mEnableIconUpdateAnimation = false;
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700178 private BubbleTextHolder mBubbleTextHolder;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400179
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700181 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 }
183
184 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700185 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800186 }
187
188 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
189 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800190 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700191
Adam Cohen96bb7982014-07-07 11:58:56 -0700192 TypedArray a = context.obtainStyledAttributes(attrs,
193 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800194 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700195 mIsRtl = (getResources().getConfiguration().getLayoutDirection()
196 == View.LAYOUT_DIRECTION_RTL);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700197 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700198
Samuel Fufac96fa242019-09-26 23:06:32 -0700199 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700200 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700201 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700202 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700203 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700204 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500205 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700206 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700207 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
208 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700209 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700210 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700211 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700212 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700213 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700214 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
215 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
216 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
217 defaultIconSize = getResources().getDimensionPixelSize(
218 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600219 } else if (mDisplay == DISPLAY_TASKBAR) {
220 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700221 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700222 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700223 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700224 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700225
Winson1f064272016-07-18 17:18:02 -0700226 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700227
228 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
229 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700230 a.recycle();
231
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800232 mLongPressHelper = new CheckLongPressHelper(this);
233
Tony Wickham8912b042018-11-29 15:28:53 -0800234 mDotParams = new DotRenderer.DrawParams();
235
Sunny Goyal66dccad2018-03-19 12:00:51 -0700236 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700237 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700238 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800239 }
240
Sunny Goyal66dccad2018-03-19 12:00:51 -0700241 @Override
242 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
243 // Disable marques when not focused to that, so that updating text does not cause relayout.
244 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
245 super.onFocusChanged(focused, direction, previouslyFocusedRect);
246 }
247
Sunny Goyald872a972021-11-24 18:07:04 -0800248 public void setHideBadge(boolean hideBadge) {
249 mHideBadge = hideBadge;
250 }
251
Jon Miranda52549442017-10-26 11:28:06 -0700252 /**
253 * Resets the view so it can be recycled.
254 */
255 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800256 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800257 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800258 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800259 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800260 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800261 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700262 }
263
Tony Wickhamf34bee82018-12-03 18:11:39 -0800264 private void cancelDotScaleAnim() {
265 if (mDotScaleAnim != null) {
266 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700267 }
268 }
269
Tony Wickhamf34bee82018-12-03 18:11:39 -0800270 private void animateDotScale(float... dotScales) {
271 cancelDotScaleAnim();
272 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
273 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700274 @Override
275 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800276 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700277 }
278 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800279 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700280 }
281
Hyunyoung Song5809a402021-02-02 01:19:18 -0800282 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700283 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700284 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
285 }
286
287 @UiThread
288 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700289 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700290 }
291
Tony Wickham175d1522021-08-25 09:18:41 -0700292 /**
293 * Returns whether the newInfo differs from the current getTag().
294 */
295 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
296 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
297 ? (WorkspaceItemInfo) getTag()
298 : null;
299 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
300 && newInfo.getTargetComponent() != null
301 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
302 return changedIcons && isShown();
303 }
304
Adam Cohen29794c52019-06-21 12:50:30 -0700305 @Override
306 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
Schneider Victor-tuliasbdb0dd82021-11-03 16:26:41 -0700307 if (delegate instanceof BaseAccessibilityDelegate) {
Adam Cohen29794c52019-06-21 12:50:30 -0700308 super.setAccessibilityDelegate(delegate);
309 } else {
310 // NO-OP
311 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
312 // delegate incorrectly. There are no cases when we shouldn't be using the
313 // LauncherAccessibilityDelegate for BubbleTextView.
314 }
315 }
316
Hyunyoung Song5809a402021-02-02 01:19:18 -0800317 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700318 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800319 applyIconAndLabel(info);
sfufa@google.comca76de02021-09-24 08:55:48 -0700320 setItemInfo(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000321 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800322 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800323 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800324 }
325
Hyunyoung Song5809a402021-02-02 01:19:18 -0800326 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700327 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800328 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700329
Sunny Goyal95899162019-03-27 16:03:06 -0700330 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700331 setItemInfo(info);
332
Sunny Goyal34b65272015-03-11 16:56:52 -0700333
334 // Verify high res immediately
335 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800336
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000337 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800338 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700339 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800340 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800341 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700342 }
343
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700344 /**
345 * Apply label and tag using a generic {@link ItemInfoWithIcon}
346 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800347 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700348 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800349 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700350 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700351 setItemInfo(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700352
353 // Verify high res immediately
354 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800355
356 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700357 }
358
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700359 private void setItemInfo(ItemInfoWithIcon itemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700360 setTag(itemInfo);
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700361 if (mBubbleTextHolder != null) {
362 mBubbleTextHolder.onItemInfoUpdated(itemInfo);
sfufa@google.comca76de02021-09-24 08:55:48 -0700363 }
Samuel Fufa02be2a42020-09-23 00:45:27 -0700364 }
365
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700366 public void setBubbleTextHolder(
367 BubbleTextHolder bubbleTextHolder) {
368 mBubbleTextHolder = bubbleTextHolder;
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700369 }
370
Hyunyoung Song5809a402021-02-02 01:19:18 -0800371 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600372 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700373 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
374 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyald872a972021-11-24 18:07:04 -0800375 int flags = useTheme ? FLAG_THEMED : 0;
376 if (mHideBadge) {
377 flags |= FLAG_NO_BADGE;
378 }
379 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), flags);
Sunny Goyal67555872021-05-21 12:56:55 -0700380 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800381
Sunny Goyalf4204382016-07-13 10:46:07 -0700382 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000383 applyLabel(info);
384 }
385
Hyunyoung Song5809a402021-02-02 01:19:18 -0800386 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000387 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700388 setText(info.title);
389 if (info.contentDescription != null) {
390 setContentDescription(info.isDisabled()
391 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
392 : info.contentDescription);
393 }
394 }
395
Winson Chung7501adf2015-06-02 11:24:28 -0700396 /**
397 * Overrides the default long press timeout.
398 */
Tony2ca999c2018-09-24 17:24:51 -0400399 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
400 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700401 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700402
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800403 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800404 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700405 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800406 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800407 }
Sunny Goyal508da152014-08-14 10:53:27 -0700408 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800409
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800410 @Override
411 protected int[] onCreateDrawableState(int extraSpace) {
412 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
413 if (mStayPressed) {
414 mergeDrawableStates(drawableState, STATE_PRESSED);
415 }
416 return drawableState;
417 }
418
Winson Chungb745afb2015-03-02 11:51:23 -0800419 /** Returns the icon for this view. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700420 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800421 return mIcon;
422 }
423
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700424 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800425 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700426 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700427 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700428 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700429 return false;
430 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700431 if (isLongClickable()) {
432 super.onTouchEvent(event);
433 mLongPressHelper.onTouchEvent(event);
434 // Keep receiving the rest of the events
435 return true;
436 } else {
437 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700438 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800439 }
440
Sunny Goyal44a3b202020-07-09 08:27:06 -0700441 /**
442 * Returns true if the touch down at the provided position be ignored
443 */
444 protected boolean shouldIgnoreTouchDown(float x, float y) {
Tony Wickham42b03952021-08-31 10:41:36 -0700445 if (mDisplay == DISPLAY_TASKBAR) {
446 // Allow touching within padding on taskbar, given icon sizes are smaller.
447 return false;
448 }
Sunny Goyal44a3b202020-07-09 08:27:06 -0700449 return y < getPaddingTop()
450 || x < getPaddingLeft()
451 || y > getHeight() - getPaddingBottom()
452 || x > getWidth() - getPaddingRight();
453 }
454
Michael Jurkaddd62e92011-02-16 17:49:14 -0800455 void setStayPressed(boolean stayPressed) {
456 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800457 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800458 }
459
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700460 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800461 public void onVisibilityAggregated(boolean isVisible) {
462 super.onVisibilityAggregated(isVisible);
463 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800464 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800465 }
466 }
467
Tony Wickham8ac277e2021-05-24 15:47:38 -0700468 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700469 setPressed(false);
470 setStayPressed(false);
471 }
472
473 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700474 public boolean onKeyUp(int keyCode, KeyEvent event) {
475 // Unlike touch events, keypress event propagate pressed state change immediately,
476 // without waiting for onClickHandler to execute. Disable pressed state changes here
477 // to avoid flickering.
478 mIgnorePressedStateChange = true;
479 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700480 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800481 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700482 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800483 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800484
Sunny Goyal0d69cb62021-10-04 15:31:38 -0700485 @Override
486 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
487 super.onSizeChanged(w, h, oldw, oldh);
488 checkForEllipsis();
489 }
490
491 @Override
492 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
493 super.onTextChanged(text, start, lengthBefore, lengthAfter);
494 checkForEllipsis();
495 }
496
497 private void checkForEllipsis() {
498 if (!ENABLE_ICON_LABEL_AUTO_SCALING.get()) {
499 return;
500 }
501 float width = getWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();
502 if (width <= 0) {
503 return;
504 }
505 setLetterSpacing(0);
506
507 String text = getText().toString();
508 TextPaint paint = getPaint();
509 if (paint.measureText(text) < width) {
510 return;
511 }
512
513 float spacing = findBestSpacingValue(paint, text, width, MIN_LETTER_SPACING);
514 // Reset the paint value so that the call to TextView does appropriate diff.
515 paint.setLetterSpacing(0);
516 setLetterSpacing(spacing);
517 }
518
519 /**
520 * Find the appropriate text spacing to display the provided text
521 * @param paint the paint used by the text view
522 * @param text the text to display
523 * @param allowedWidthPx available space to render the text
524 * @param minSpacingEm minimum spacing allowed between characters
525 * @return the final textSpacing value
526 *
527 * @see #setLetterSpacing(float)
528 */
529 private float findBestSpacingValue(TextPaint paint, String text, float allowedWidthPx,
530 float minSpacingEm) {
531 paint.setLetterSpacing(minSpacingEm);
532 if (paint.measureText(text) > allowedWidthPx) {
533 // If there is no result at high limit, we can do anything more
534 return minSpacingEm;
535 }
536
537 float lowLimit = 0;
538 float highLimit = minSpacingEm;
539
540 for (int i = 0; i < MAX_SEARCH_LOOP_COUNT; i++) {
541 float value = (lowLimit + highLimit) / 2;
542 paint.setLetterSpacing(value);
543 if (paint.measureText(text) < allowedWidthPx) {
544 highLimit = value;
545 } else {
546 lowLimit = value;
547 }
548 }
549
550 // At the end error on the higher side
551 return highLimit;
552 }
553
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700554 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800555 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700556 super.onDraw(canvas);
557 }
558
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800559 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700560 public void onDraw(Canvas canvas) {
561 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800562 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700563 }
564
Tony Wickham1237df02017-02-24 08:59:36 -0800565 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800566 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700567 *
Tony Wickham1237df02017-02-24 08:59:36 -0800568 * @param canvas The canvas to draw to.
569 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800570 protected void drawDotIfNecessary(Canvas canvas) {
571 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800572 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700573 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
574 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800575 final int scrollX = getScrollX();
576 final int scrollY = getScrollY();
577 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800578 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800579 canvas.translate(-scrollX, -scrollY);
580 }
581 }
582
Jon Miranda9b78e192019-08-30 18:42:01 -0700583 @Override
584 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800585 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800586 return;
587 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800588 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800589
Tony Wickhamf34bee82018-12-03 18:11:39 -0800590 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800591 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800592 } else if (hasDot()) {
593 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800594 }
595 }
596
Tony Wickhamf34bee82018-12-03 18:11:39 -0800597 private boolean hasDot() {
598 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800599 }
600
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700601 /**
602 * Get the icon bounds on the view depending on the layout type.
603 */
Tony Wickham1237df02017-02-24 08:59:36 -0800604 public void getIconBounds(Rect outBounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700605 getIconBounds(mIconSize, outBounds);
Tony05d98c22018-07-23 08:01:15 -0700606 }
607
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700608 /**
609 * Get the icon bounds on the view depending on the layout type.
610 */
611 public void getIconBounds(int iconSize, Rect outBounds) {
612 Utilities.setRectToViewCenter(this, iconSize, outBounds);
613 if (mLayoutHorizontal) {
614 if (mIsRtl) {
615 outBounds.offsetTo(getWidth() - iconSize - getPaddingRight(), outBounds.top);
616 } else {
617 outBounds.offsetTo(getPaddingLeft(), outBounds.top);
618 }
619 } else {
620 outBounds.offsetTo(outBounds.left, getPaddingTop());
621 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800622 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400623
Jon Miranda228877d2021-02-09 11:05:00 -0500624 /**
625 * Sets whether to vertically center the content.
626 */
627 public void setCenterVertically(boolean centerVertically) {
628 mCenterVertically = centerVertically;
629 }
630
Joe Onorato9c1289c2009-08-17 11:03:03 -0400631 @Override
Winson1f064272016-07-18 17:18:02 -0700632 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
633 if (mCenterVertically) {
634 Paint.FontMetrics fm = getPaint().getFontMetrics();
635 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
636 (int) Math.ceil(fm.bottom - fm.top);
637 int height = MeasureSpec.getSize(heightMeasureSpec);
638 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
639 getPaddingBottom());
640 }
641 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
642 }
643
644 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700645 public void setTextColor(int color) {
646 mTextColor = color;
Jon Spivack68862142021-10-28 18:37:19 -0700647 mTextColorStateList = null;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700648 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700649 }
650
Adam Cohen96bb7982014-07-07 11:58:56 -0700651 @Override
652 public void setTextColor(ColorStateList colors) {
653 mTextColor = colors.getDefaultColor();
Jon Spivack68862142021-10-28 18:37:19 -0700654 mTextColorStateList = colors;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700655 if (Float.compare(mTextAlpha, 1) == 0) {
656 super.setTextColor(colors);
657 } else {
658 super.setTextColor(getModifiedColor());
659 }
Adam Cohen477828c2013-09-20 12:05:49 -0700660 }
661
Tony7308cde2017-06-27 22:38:33 -0700662 public boolean shouldTextBeVisible() {
663 // Text should be visible everywhere but the hotseat.
664 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
665 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700666 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
667 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700668 }
669
Winson Chung5f8afe62013-08-12 16:19:28 -0700670 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700671 setTextAlpha(visible ? 1 : 0);
672 }
673
674 private void setTextAlpha(float alpha) {
675 mTextAlpha = alpha;
Jon Spivack68862142021-10-28 18:37:19 -0700676 if (mTextColorStateList != null) {
677 setTextColor(mTextColorStateList);
678 } else {
679 super.setTextColor(getModifiedColor());
680 }
Sunny Goyaled7a6932018-04-13 11:41:50 -0700681 }
682
683 private int getModifiedColor() {
684 if (mTextAlpha == 0) {
685 // Special case to prevent text shadows in high contrast mode
686 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700687 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800688 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700689 }
690
691 /**
692 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700693 *
Tony8f402802017-06-16 17:24:54 -0700694 * @param fadeIn Whether the text should fade in or fade out.
695 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700696 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700697 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700698 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700699 }
700
Winson Chungaffd7b42010-08-20 15:11:56 -0700701 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800702 public void cancelLongPress() {
703 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800704 mLongPressHelper.cancelLongPress();
705 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500706
Samuel Fufac2820182021-01-22 11:47:25 -0600707 /**
708 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000709 *
710 * If this app is installing, the progress bar will be updated with the installation progress.
711 * If this app is installed and downloading incrementally, the progress bar will be updated
712 * with the total download progress.
713 */
714 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800715 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700716 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000717 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
718 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800719 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000720 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800721 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
722 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700723 }
724 }
725 }
726
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800727 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
728 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000729 if (preloadDrawable != null && maybePerformFinishedAnimation) {
730 preloadDrawable.maybePerformFinishedAnimation();
731 }
732 }
733
734 /** Applies the given progress level to the this icon's progress bar. */
735 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800736 public PreloadIconDrawable applyProgressLevel() {
737 if (!(getTag() instanceof ItemInfoWithIcon)) {
738 return null;
739 }
740
741 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
742 int progressLevel = info.getProgressLevel();
743 if (progressLevel >= 100) {
744 setContentDescription(info.contentDescription != null
745 ? info.contentDescription : "");
746 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800747 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800748 } else {
749 setContentDescription(getContext()
750 .getString(R.string.app_waiting_download_title, info.title));
751 }
752 if (mIcon != null) {
753 PreloadIconDrawable preloadIconDrawable;
754 if (mIcon instanceof PreloadIconDrawable) {
755 preloadIconDrawable = (PreloadIconDrawable) mIcon;
756 preloadIconDrawable.setLevel(progressLevel);
757 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700758 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800759 preloadIconDrawable = makePreloadIcon();
760 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700761 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800762 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400763 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700764 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400765 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700766
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800767 /**
768 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
769 * object.
770 */
771 @Nullable
772 public PreloadIconDrawable makePreloadIcon() {
773 if (!(getTag() instanceof ItemInfoWithIcon)) {
774 return null;
775 }
776
777 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
778 int progressLevel = info.getProgressLevel();
779 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
780
781 preloadDrawable.setLevel(progressLevel);
782 preloadDrawable.setIsDisabled(!info.isAppStartable());
783
784 return preloadDrawable;
785 }
786
Tony Wickhamf34bee82018-12-03 18:11:39 -0800787 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800788 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800789 boolean wasDotted = mDotInfo != null;
790 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
791 boolean isDotted = mDotInfo != null;
792 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700793 if (mDisplay == DISPLAY_ALL_APPS) {
794 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
795 } else {
796 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
797 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800798 if (wasDotted || isDotted) {
799 // Animate when a dot is first added or when it is removed.
800 if (animate && (wasDotted ^ isDotted) && isShown()) {
801 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800802 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800803 cancelDotScaleAnim();
804 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800805 invalidate();
806 }
807 }
Tony Wickham305e9202018-01-23 17:46:47 -0800808 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700809 if (itemInfo.isDisabled()) {
810 setContentDescription(getContext().getString(R.string.disabled_app_label,
811 itemInfo.contentDescription));
812 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800813 int count = mDotInfo.getNotificationCount();
Steven Ng707b1182021-09-13 11:54:58 +0100814 setContentDescription(
815 getAppLabelPluralString(itemInfo.contentDescription.toString(), count));
Tony Wickham305e9202018-01-23 17:46:47 -0800816 } else {
817 setContentDescription(itemInfo.contentDescription);
818 }
819 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800820 }
821 }
822
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800823 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
824 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
825 != 0) {
826 String percentageString = NumberFormat.getPercentInstance()
827 .format(progressLevel * 0.01);
828 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
829 setContentDescription(getContext()
830 .getString(
831 R.string.app_installing_title, info.title, percentageString));
832 } else if ((info.runtimeStatusFlags
833 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
834 setContentDescription(getContext()
835 .getString(
836 R.string.app_downloading_title, info.title, percentageString));
837 }
838 }
839 }
840
Winson Chungb745afb2015-03-02 11:51:23 -0800841 /**
842 * Sets the icon for this view based on the layout direction.
843 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700844 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700845 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700846 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700847 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700848 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800849 if (mIcon != null) {
850 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
851 }
Tony17b7f9b2017-05-23 12:19:09 -0700852 }
853
Jon Miranda9b78e192019-08-30 18:42:01 -0700854 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700855 public void setIconVisible(boolean visible) {
856 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700857 if (!mIsIconVisible) {
858 resetIconScale();
859 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700860 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700861 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700862 }
863
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400864 protected boolean iconUpdateAnimationEnabled() {
865 return mEnableIconUpdateAnimation;
866 }
867
Tony Wickham377ed3f2016-07-20 15:21:04 -0700868 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700869 // If we had already set an icon before, disable relayout as the icon size is the
870 // same as before.
871 mDisableRelayout = mIcon != null;
872
873 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700874
875 updateIcon(icon);
876
877 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400878 if (mIcon != null
879 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400880 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000881 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800882 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700883
Sunny Goyal66dccad2018-03-19 12:00:51 -0700884 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800885 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700886
Sunny Goyal69b75642015-05-15 17:00:24 -0700887 @Override
888 public void requestLayout() {
889 if (!mDisableRelayout) {
890 super.requestLayout();
891 }
892 }
893
Sunny Goyal34b65272015-03-11 16:56:52 -0700894 /**
895 * Applies the item info if it is same as what the view is pointing to currently.
896 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800897 @Override
898 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700899 if (getTag() == info) {
900 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700901 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400902 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700903
Jon Miranda7f522a22017-07-28 11:56:47 -0700904 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700905 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700906
Sunny Goyal34b65272015-03-11 16:56:52 -0700907 if (info instanceof AppInfo) {
908 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700909 } else if (info instanceof WorkspaceItemInfo) {
910 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700911 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700912 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700913 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600914 } else if (info instanceof SearchActionItemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700915 applyFromItemInfoWithIcon((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700916 }
Winsonc0880492015-08-21 11:16:27 -0700917
Sunny Goyal69b75642015-05-15 17:00:24 -0700918 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400919 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700920 }
921 }
922
923 /**
924 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
925 */
926 public void verifyHighRes() {
927 if (mIconLoadRequest != null) {
928 mIconLoadRequest.cancel();
929 mIconLoadRequest = null;
930 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800931 if (getTag() instanceof ItemInfoWithIcon) {
932 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700933 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800934 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700935 .updateIconInBackground(BubbleTextView.this, info);
936 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700937 }
938 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700939
Jon Miranda47170112017-03-03 14:57:14 -0800940 public int getIconSize() {
941 return mIconSize;
942 }
Adam Cohen65086992020-02-19 08:40:49 -0800943
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700944 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100945 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
Nick Chameyev4dd41592021-08-27 14:11:53 +0100946 + mTranslationForMoveFromCenterAnimation.x
947 + mTranslationXForTaskbarAlignmentAnimation);
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100948 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
949 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700950 }
951
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700952 public void setReorderBounceOffset(float x, float y) {
953 mTranslationForReorderBounce.set(x, y);
954 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700955 }
956
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700957 public void getReorderBounceOffset(PointF offset) {
958 offset.set(mTranslationForReorderBounce);
959 }
960
961 @Override
962 public void setReorderPreviewOffset(float x, float y) {
963 mTranslationForReorderPreview.set(x, y);
964 updateTranslation();
965 }
966
967 @Override
968 public void getReorderPreviewOffset(PointF offset) {
969 offset.set(mTranslationForReorderPreview);
970 }
971
972 public void setReorderBounceScale(float scale) {
973 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700974 super.setScaleX(scale);
975 super.setScaleY(scale);
976 }
977
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700978 public float getReorderBounceScale() {
979 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700980 }
981
Nick Chameyev4dd41592021-08-27 14:11:53 +0100982 /**
983 * Sets translation values for move from center animation
984 */
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100985 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
986 mTranslationForMoveFromCenterAnimation.set(x, y);
987 updateTranslation();
988 }
989
Nick Chameyev4dd41592021-08-27 14:11:53 +0100990 /**
991 * Sets translationX for taskbar to launcher alignment animation
992 */
993 public void setTranslationXForTaskbarAlignmentAnimation(float translationX) {
994 mTranslationXForTaskbarAlignmentAnimation = translationX;
995 updateTranslation();
996 }
997
998 /**
999 * Returns translationX value for taskbar to launcher alignment animation
1000 */
1001 public float getTranslationXForTaskbarAlignmentAnimation() {
1002 return mTranslationXForTaskbarAlignmentAnimation;
1003 }
1004
Adam Cohend9162062020-03-24 16:35:35 -07001005 public View getView() {
1006 return this;
1007 }
1008
Adam Cohen65086992020-02-19 08:40:49 -08001009 @Override
1010 public int getViewType() {
1011 return DRAGGABLE_ICON;
1012 }
1013
1014 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -07001015 public void getWorkspaceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001016 getIconBounds(mIconSize, bounds);
Adam Cohen65086992020-02-19 08:40:49 -08001017 }
1018
Adam Cohenc77bc452020-05-07 11:55:19 -07001019 private int getIconSizeForDisplay(int display) {
1020 DeviceProfile grid = mActivity.getDeviceProfile();
1021 switch (display) {
1022 case DISPLAY_ALL_APPS:
1023 return grid.allAppsIconSizePx;
Adam Cohenc77bc452020-05-07 11:55:19 -07001024 case DISPLAY_FOLDER:
Tony Wickham8ac277e2021-05-24 15:47:38 -07001025 return grid.folderChildIconSizePx;
1026 case DISPLAY_WORKSPACE:
Adam Cohenc77bc452020-05-07 11:55:19 -07001027 default:
1028 return grid.iconSizePx;
1029 }
1030 }
1031
1032 public void getSourceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001033 getIconBounds(mIconSize, bounds);
Adam Cohenc77bc452020-05-07 11:55:19 -07001034 }
1035
Adam Cohen65086992020-02-19 08:40:49 -08001036 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -07001037 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001038 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -08001039 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -07001040 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -08001041 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001042
1043 private void resetIconScale() {
1044 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -07001045 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001046 }
1047 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -07001048
1049 private void updateIcon(Drawable newIcon) {
1050 if (mLayoutHorizontal) {
1051 setCompoundDrawablesRelative(newIcon, null, null, null);
1052 } else {
1053 setCompoundDrawables(null, newIcon, null, null);
1054 }
1055 }
Steven Ng707b1182021-09-13 11:54:58 +01001056
1057 private String getAppLabelPluralString(String appName, int notificationCount) {
1058 MessageFormat icuCountFormat = new MessageFormat(
1059 getResources().getString(R.string.dotted_app_label),
1060 Locale.getDefault());
1061 HashMap<String, Object> args = new HashMap();
1062 args.put("app_name", appName);
1063 args.put("count", notificationCount);
1064 return icuCountFormat.format(args);
1065 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001066}