blob: f01696517b79ba3b5231ae8690b778d8ae046e8a [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 Goyal066ace12018-11-05 11:08:31 -080021import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
22
Tony4043b052018-08-17 13:47:39 -070023import android.animation.Animator;
24import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080025import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070027import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070028import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070030import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070031import android.graphics.Paint;
Adam Cohend9162062020-03-24 16:35:35 -070032import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080033import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070034import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.graphics.drawable.Drawable;
Steven Ng707b1182021-09-13 11:54:58 +010036import android.icu.text.MessageFormat;
Sunny Goyal0d69cb62021-10-04 15:31:38 -070037import android.text.TextPaint;
Sunny Goyal66dccad2018-03-19 12:00:51 -070038import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080039import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080040import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070041import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070042import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080043import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070044import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080045import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080046import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070047
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000048import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080049import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070050
Schneider Victor-tuliasbdb0dd82021-11-03 16:26:41 -070051import com.android.launcher3.accessibility.BaseAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080052import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080053import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070054import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080055import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070056import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080057import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080058import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070059import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080060import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyal572aca42021-03-24 15:21:39 -070061import com.android.launcher3.icons.PlaceHolderIconDrawable;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080062import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070063import com.android.launcher3.model.data.AppInfo;
64import com.android.launcher3.model.data.ItemInfo;
65import com.android.launcher3.model.data.ItemInfoWithIcon;
66import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060067import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070068import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070069import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080070import com.android.launcher3.views.ActivityContext;
sfufa@google.comd7bdd972021-10-19 12:41:56 -070071import com.android.launcher3.views.BubbleTextHolder;
Jon Miranda9b78e192019-08-30 18:42:01 -070072import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070073
Sunny Goyalc469aad2015-10-01 11:24:23 -070074import java.text.NumberFormat;
Steven Ng707b1182021-09-13 11:54:58 +010075import java.util.HashMap;
76import java.util.Locale;
Sunny Goyalc469aad2015-10-01 11:24:23 -070077
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078/**
79 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
80 * because we want to make the bubble taller than the text and TextView's clip is
81 * too aggressive.
82 */
Sunny Goyalb65d7662021-03-07 15:09:11 -080083public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080084 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070085
Sunny Goyaldfaccf62015-05-11 16:30:44 -070086 private static final int DISPLAY_WORKSPACE = 0;
87 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070088 private static final int DISPLAY_FOLDER = 2;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -070089 protected static final int DISPLAY_TASKBAR = 5;
90 private static final int DISPLAY_SEARCH_RESULT = 6;
91 private static final int DISPLAY_SEARCH_RESULT_SMALL = 7;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070092
Sunny Goyal486adb02021-10-21 11:29:52 -070093 private static final float MIN_LETTER_SPACING = -0.05f;
Sunny Goyal0d69cb62021-10-04 15:31:38 -070094 private static final int MAX_SEARCH_LOOP_COUNT = 20;
95
Samuel Fufad6bacdc2020-08-23 21:56:07 -070096 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070097 private static final float HIGHLIGHT_SCALE = 1.16f;
98
Adam Cohen1d13c0b2020-04-21 16:29:12 -070099 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
100 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
101
Nick Chameyev4dd41592021-08-27 14:11:53 +0100102 private float mTranslationXForTaskbarAlignmentAnimation = 0f;
103
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100104 private final PointF mTranslationForMoveFromCenterAnimation = new PointF(0, 0);
105
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700106 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800107
Tony Wickhamf34bee82018-12-03 18:11:39 -0800108 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
109 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800110 @Override
111 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800112 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800113 }
114
115 @Override
116 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800117 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800118 bubbleTextView.invalidate();
119 }
120 };
121
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
123 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700124 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700125 public Float get(BubbleTextView bubbleTextView) {
126 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700127 }
128
129 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700130 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700131 bubbleTextView.setTextAlpha(alpha);
132 }
133 };
134
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800135 private final ActivityContext mActivity;
Sunny Goyalc4c32692021-05-21 14:23:29 -0700136 private FastBitmapDrawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800137 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700138
Tony Wickham794fe4f2021-01-11 14:54:23 -0600139 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700140
Sunny Goyaled7a6932018-04-13 11:41:50 -0700141 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700142
143 private final boolean mLayoutHorizontal;
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700144 private final boolean mIsRtl;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700145 private final int mIconSize;
146
147 @ViewDebug.ExportedProperty(category = "launcher")
148 private boolean mIsIconVisible = true;
149 @ViewDebug.ExportedProperty(category = "launcher")
150 private int mTextColor;
151 @ViewDebug.ExportedProperty(category = "launcher")
Jon Spivack68862142021-10-28 18:37:19 -0700152 private ColorStateList mTextColorStateList;
153 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700154 private float mTextAlpha = 1;
155
Tony4043b052018-08-17 13:47:39 -0700156 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800157 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800158 private DotRenderer mDotRenderer;
159 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700160 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800161 private Animator mDotScaleAnim;
162 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700163
Sunny Goyal4ffec482016-02-09 11:28:52 -0800164 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800165 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800166 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700167 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800168 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700169 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500170
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800171 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700172
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400173 private boolean mEnableIconUpdateAnimation = false;
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700174 private BubbleTextHolder mBubbleTextHolder;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700177 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 }
179
180 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700181 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 }
183
184 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
185 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800186 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700187
Adam Cohen96bb7982014-07-07 11:58:56 -0700188 TypedArray a = context.obtainStyledAttributes(attrs,
189 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800190 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700191 mIsRtl = (getResources().getConfiguration().getLayoutDirection()
192 == View.LAYOUT_DIRECTION_RTL);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700193 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700194
Samuel Fufac96fa242019-09-26 23:06:32 -0700195 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700196 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700197 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700198 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700199 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700200 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500201 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700202 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700203 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
204 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700205 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700206 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700207 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700208 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700209 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700210 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
211 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
212 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
213 defaultIconSize = getResources().getDimensionPixelSize(
214 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600215 } else if (mDisplay == DISPLAY_TASKBAR) {
216 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700217 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700218 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700219 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700220 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700221
Winson1f064272016-07-18 17:18:02 -0700222 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700223
224 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
225 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700226 a.recycle();
227
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800228 mLongPressHelper = new CheckLongPressHelper(this);
229
Tony Wickham8912b042018-11-29 15:28:53 -0800230 mDotParams = new DotRenderer.DrawParams();
231
Sunny Goyal66dccad2018-03-19 12:00:51 -0700232 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700233 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700234 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800235 }
236
Sunny Goyal66dccad2018-03-19 12:00:51 -0700237 @Override
238 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
239 // Disable marques when not focused to that, so that updating text does not cause relayout.
240 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
241 super.onFocusChanged(focused, direction, previouslyFocusedRect);
242 }
243
Jon Miranda52549442017-10-26 11:28:06 -0700244 /**
245 * Resets the view so it can be recycled.
246 */
247 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800248 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800249 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800250 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800251 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800252 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800253 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700254 }
255
Tony Wickhamf34bee82018-12-03 18:11:39 -0800256 private void cancelDotScaleAnim() {
257 if (mDotScaleAnim != null) {
258 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700259 }
260 }
261
Tony Wickhamf34bee82018-12-03 18:11:39 -0800262 private void animateDotScale(float... dotScales) {
263 cancelDotScaleAnim();
264 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
265 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700266 @Override
267 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800268 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700269 }
270 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800271 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700272 }
273
Hyunyoung Song5809a402021-02-02 01:19:18 -0800274 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700275 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700276 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
277 }
278
279 @UiThread
280 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700281 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700282 }
283
Tony Wickham175d1522021-08-25 09:18:41 -0700284 /**
285 * Returns whether the newInfo differs from the current getTag().
286 */
287 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
288 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
289 ? (WorkspaceItemInfo) getTag()
290 : null;
291 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
292 && newInfo.getTargetComponent() != null
293 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
294 return changedIcons && isShown();
295 }
296
Adam Cohen29794c52019-06-21 12:50:30 -0700297 @Override
298 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
Schneider Victor-tuliasbdb0dd82021-11-03 16:26:41 -0700299 if (delegate instanceof BaseAccessibilityDelegate) {
Adam Cohen29794c52019-06-21 12:50:30 -0700300 super.setAccessibilityDelegate(delegate);
301 } else {
302 // NO-OP
303 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
304 // delegate incorrectly. There are no cases when we shouldn't be using the
305 // LauncherAccessibilityDelegate for BubbleTextView.
306 }
307 }
308
Hyunyoung Song5809a402021-02-02 01:19:18 -0800309 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700310 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800311 applyIconAndLabel(info);
sfufa@google.comca76de02021-09-24 08:55:48 -0700312 setItemInfo(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000313 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800314 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800315 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800316 }
317
Hyunyoung Song5809a402021-02-02 01:19:18 -0800318 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700319 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800320 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700321
Sunny Goyal95899162019-03-27 16:03:06 -0700322 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700323 setItemInfo(info);
324
Sunny Goyal34b65272015-03-11 16:56:52 -0700325
326 // Verify high res immediately
327 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800328
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000329 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800330 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700331 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800332 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800333 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700334 }
335
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700336 /**
337 * Apply label and tag using a generic {@link ItemInfoWithIcon}
338 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800339 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700340 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800341 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700342 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700343 setItemInfo(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700344
345 // Verify high res immediately
346 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800347
348 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700349 }
350
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700351 private void setItemInfo(ItemInfoWithIcon itemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700352 setTag(itemInfo);
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700353 if (mBubbleTextHolder != null) {
354 mBubbleTextHolder.onItemInfoUpdated(itemInfo);
sfufa@google.comca76de02021-09-24 08:55:48 -0700355 }
Samuel Fufa02be2a42020-09-23 00:45:27 -0700356 }
357
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700358 public void setBubbleTextHolder(
359 BubbleTextHolder bubbleTextHolder) {
360 mBubbleTextHolder = bubbleTextHolder;
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700361 }
362
Hyunyoung Song5809a402021-02-02 01:19:18 -0800363 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600364 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700365 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
366 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyal9ab43772021-04-23 11:40:58 -0700367 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), useTheme);
Sunny Goyal67555872021-05-21 12:56:55 -0700368 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800369
Sunny Goyalf4204382016-07-13 10:46:07 -0700370 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000371 applyLabel(info);
372 }
373
Hyunyoung Song5809a402021-02-02 01:19:18 -0800374 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000375 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700376 setText(info.title);
377 if (info.contentDescription != null) {
378 setContentDescription(info.isDisabled()
379 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
380 : info.contentDescription);
381 }
382 }
383
Winson Chung7501adf2015-06-02 11:24:28 -0700384 /**
385 * Overrides the default long press timeout.
386 */
Tony2ca999c2018-09-24 17:24:51 -0400387 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
388 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700389 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700390
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800391 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800392 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700393 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800394 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800395 }
Sunny Goyal508da152014-08-14 10:53:27 -0700396 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800397
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800398 @Override
399 protected int[] onCreateDrawableState(int extraSpace) {
400 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
401 if (mStayPressed) {
402 mergeDrawableStates(drawableState, STATE_PRESSED);
403 }
404 return drawableState;
405 }
406
Winson Chungb745afb2015-03-02 11:51:23 -0800407 /** Returns the icon for this view. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700408 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800409 return mIcon;
410 }
411
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700412 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800413 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700414 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700415 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700416 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700417 return false;
418 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700419 if (isLongClickable()) {
420 super.onTouchEvent(event);
421 mLongPressHelper.onTouchEvent(event);
422 // Keep receiving the rest of the events
423 return true;
424 } else {
425 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700426 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800427 }
428
Sunny Goyal44a3b202020-07-09 08:27:06 -0700429 /**
430 * Returns true if the touch down at the provided position be ignored
431 */
432 protected boolean shouldIgnoreTouchDown(float x, float y) {
Tony Wickham42b03952021-08-31 10:41:36 -0700433 if (mDisplay == DISPLAY_TASKBAR) {
434 // Allow touching within padding on taskbar, given icon sizes are smaller.
435 return false;
436 }
Sunny Goyal44a3b202020-07-09 08:27:06 -0700437 return y < getPaddingTop()
438 || x < getPaddingLeft()
439 || y > getHeight() - getPaddingBottom()
440 || x > getWidth() - getPaddingRight();
441 }
442
Michael Jurkaddd62e92011-02-16 17:49:14 -0800443 void setStayPressed(boolean stayPressed) {
444 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800445 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800446 }
447
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700448 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800449 public void onVisibilityAggregated(boolean isVisible) {
450 super.onVisibilityAggregated(isVisible);
451 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800452 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800453 }
454 }
455
Tony Wickham8ac277e2021-05-24 15:47:38 -0700456 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700457 setPressed(false);
458 setStayPressed(false);
459 }
460
461 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700462 public boolean onKeyUp(int keyCode, KeyEvent event) {
463 // Unlike touch events, keypress event propagate pressed state change immediately,
464 // without waiting for onClickHandler to execute. Disable pressed state changes here
465 // to avoid flickering.
466 mIgnorePressedStateChange = true;
467 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700468 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800469 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700470 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800471 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800472
Sunny Goyal0d69cb62021-10-04 15:31:38 -0700473 @Override
474 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
475 super.onSizeChanged(w, h, oldw, oldh);
476 checkForEllipsis();
477 }
478
479 @Override
480 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
481 super.onTextChanged(text, start, lengthBefore, lengthAfter);
482 checkForEllipsis();
483 }
484
485 private void checkForEllipsis() {
486 if (!ENABLE_ICON_LABEL_AUTO_SCALING.get()) {
487 return;
488 }
489 float width = getWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();
490 if (width <= 0) {
491 return;
492 }
493 setLetterSpacing(0);
494
495 String text = getText().toString();
496 TextPaint paint = getPaint();
497 if (paint.measureText(text) < width) {
498 return;
499 }
500
501 float spacing = findBestSpacingValue(paint, text, width, MIN_LETTER_SPACING);
502 // Reset the paint value so that the call to TextView does appropriate diff.
503 paint.setLetterSpacing(0);
504 setLetterSpacing(spacing);
505 }
506
507 /**
508 * Find the appropriate text spacing to display the provided text
509 * @param paint the paint used by the text view
510 * @param text the text to display
511 * @param allowedWidthPx available space to render the text
512 * @param minSpacingEm minimum spacing allowed between characters
513 * @return the final textSpacing value
514 *
515 * @see #setLetterSpacing(float)
516 */
517 private float findBestSpacingValue(TextPaint paint, String text, float allowedWidthPx,
518 float minSpacingEm) {
519 paint.setLetterSpacing(minSpacingEm);
520 if (paint.measureText(text) > allowedWidthPx) {
521 // If there is no result at high limit, we can do anything more
522 return minSpacingEm;
523 }
524
525 float lowLimit = 0;
526 float highLimit = minSpacingEm;
527
528 for (int i = 0; i < MAX_SEARCH_LOOP_COUNT; i++) {
529 float value = (lowLimit + highLimit) / 2;
530 paint.setLetterSpacing(value);
531 if (paint.measureText(text) < allowedWidthPx) {
532 highLimit = value;
533 } else {
534 lowLimit = value;
535 }
536 }
537
538 // At the end error on the higher side
539 return highLimit;
540 }
541
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700542 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800543 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700544 super.onDraw(canvas);
545 }
546
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800547 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700548 public void onDraw(Canvas canvas) {
549 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800550 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700551 }
552
Tony Wickham1237df02017-02-24 08:59:36 -0800553 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800554 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700555 *
Tony Wickham1237df02017-02-24 08:59:36 -0800556 * @param canvas The canvas to draw to.
557 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800558 protected void drawDotIfNecessary(Canvas canvas) {
559 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800560 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700561 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
562 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800563 final int scrollX = getScrollX();
564 final int scrollY = getScrollY();
565 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800566 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800567 canvas.translate(-scrollX, -scrollY);
568 }
569 }
570
Jon Miranda9b78e192019-08-30 18:42:01 -0700571 @Override
572 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800573 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800574 return;
575 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800576 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800577
Tony Wickhamf34bee82018-12-03 18:11:39 -0800578 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800579 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800580 } else if (hasDot()) {
581 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800582 }
583 }
584
Tony Wickhamf34bee82018-12-03 18:11:39 -0800585 private boolean hasDot() {
586 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800587 }
588
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700589 /**
590 * Get the icon bounds on the view depending on the layout type.
591 */
Tony Wickham1237df02017-02-24 08:59:36 -0800592 public void getIconBounds(Rect outBounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700593 getIconBounds(mIconSize, outBounds);
Tony05d98c22018-07-23 08:01:15 -0700594 }
595
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700596 /**
597 * Get the icon bounds on the view depending on the layout type.
598 */
599 public void getIconBounds(int iconSize, Rect outBounds) {
600 Utilities.setRectToViewCenter(this, iconSize, outBounds);
601 if (mLayoutHorizontal) {
602 if (mIsRtl) {
603 outBounds.offsetTo(getWidth() - iconSize - getPaddingRight(), outBounds.top);
604 } else {
605 outBounds.offsetTo(getPaddingLeft(), outBounds.top);
606 }
607 } else {
608 outBounds.offsetTo(outBounds.left, getPaddingTop());
609 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800610 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400611
Jon Miranda228877d2021-02-09 11:05:00 -0500612 /**
613 * Sets whether to vertically center the content.
614 */
615 public void setCenterVertically(boolean centerVertically) {
616 mCenterVertically = centerVertically;
617 }
618
Joe Onorato9c1289c2009-08-17 11:03:03 -0400619 @Override
Winson1f064272016-07-18 17:18:02 -0700620 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
621 if (mCenterVertically) {
622 Paint.FontMetrics fm = getPaint().getFontMetrics();
623 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
624 (int) Math.ceil(fm.bottom - fm.top);
625 int height = MeasureSpec.getSize(heightMeasureSpec);
626 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
627 getPaddingBottom());
628 }
629 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
630 }
631
632 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700633 public void setTextColor(int color) {
634 mTextColor = color;
Jon Spivack68862142021-10-28 18:37:19 -0700635 mTextColorStateList = null;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700636 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700637 }
638
Adam Cohen96bb7982014-07-07 11:58:56 -0700639 @Override
640 public void setTextColor(ColorStateList colors) {
641 mTextColor = colors.getDefaultColor();
Jon Spivack68862142021-10-28 18:37:19 -0700642 mTextColorStateList = colors;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700643 if (Float.compare(mTextAlpha, 1) == 0) {
644 super.setTextColor(colors);
645 } else {
646 super.setTextColor(getModifiedColor());
647 }
Adam Cohen477828c2013-09-20 12:05:49 -0700648 }
649
Tony7308cde2017-06-27 22:38:33 -0700650 public boolean shouldTextBeVisible() {
651 // Text should be visible everywhere but the hotseat.
652 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
653 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700654 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
655 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700656 }
657
Winson Chung5f8afe62013-08-12 16:19:28 -0700658 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700659 setTextAlpha(visible ? 1 : 0);
660 }
661
662 private void setTextAlpha(float alpha) {
663 mTextAlpha = alpha;
Jon Spivack68862142021-10-28 18:37:19 -0700664 if (mTextColorStateList != null) {
665 setTextColor(mTextColorStateList);
666 } else {
667 super.setTextColor(getModifiedColor());
668 }
Sunny Goyaled7a6932018-04-13 11:41:50 -0700669 }
670
671 private int getModifiedColor() {
672 if (mTextAlpha == 0) {
673 // Special case to prevent text shadows in high contrast mode
674 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700675 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800676 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700677 }
678
679 /**
680 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700681 *
Tony8f402802017-06-16 17:24:54 -0700682 * @param fadeIn Whether the text should fade in or fade out.
683 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700684 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700685 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700686 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700687 }
688
Winson Chungaffd7b42010-08-20 15:11:56 -0700689 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800690 public void cancelLongPress() {
691 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800692 mLongPressHelper.cancelLongPress();
693 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500694
Samuel Fufac2820182021-01-22 11:47:25 -0600695 /**
696 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000697 *
698 * If this app is installing, the progress bar will be updated with the installation progress.
699 * If this app is installed and downloading incrementally, the progress bar will be updated
700 * with the total download progress.
701 */
702 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800703 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700704 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000705 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
706 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800707 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000708 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800709 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
710 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700711 }
712 }
713 }
714
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800715 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
716 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000717 if (preloadDrawable != null && maybePerformFinishedAnimation) {
718 preloadDrawable.maybePerformFinishedAnimation();
719 }
720 }
721
722 /** Applies the given progress level to the this icon's progress bar. */
723 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800724 public PreloadIconDrawable applyProgressLevel() {
725 if (!(getTag() instanceof ItemInfoWithIcon)) {
726 return null;
727 }
728
729 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
730 int progressLevel = info.getProgressLevel();
731 if (progressLevel >= 100) {
732 setContentDescription(info.contentDescription != null
733 ? info.contentDescription : "");
734 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800735 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800736 } else {
737 setContentDescription(getContext()
738 .getString(R.string.app_waiting_download_title, info.title));
739 }
740 if (mIcon != null) {
741 PreloadIconDrawable preloadIconDrawable;
742 if (mIcon instanceof PreloadIconDrawable) {
743 preloadIconDrawable = (PreloadIconDrawable) mIcon;
744 preloadIconDrawable.setLevel(progressLevel);
745 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700746 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800747 preloadIconDrawable = makePreloadIcon();
748 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700749 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800750 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400751 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700752 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400753 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700754
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800755 /**
756 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
757 * object.
758 */
759 @Nullable
760 public PreloadIconDrawable makePreloadIcon() {
761 if (!(getTag() instanceof ItemInfoWithIcon)) {
762 return null;
763 }
764
765 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
766 int progressLevel = info.getProgressLevel();
767 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
768
769 preloadDrawable.setLevel(progressLevel);
770 preloadDrawable.setIsDisabled(!info.isAppStartable());
771
772 return preloadDrawable;
773 }
774
Tony Wickhamf34bee82018-12-03 18:11:39 -0800775 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800776 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800777 boolean wasDotted = mDotInfo != null;
778 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
779 boolean isDotted = mDotInfo != null;
780 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700781 if (mDisplay == DISPLAY_ALL_APPS) {
782 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
783 } else {
784 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
785 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800786 if (wasDotted || isDotted) {
787 // Animate when a dot is first added or when it is removed.
788 if (animate && (wasDotted ^ isDotted) && isShown()) {
789 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800790 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800791 cancelDotScaleAnim();
792 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800793 invalidate();
794 }
795 }
Tony Wickham305e9202018-01-23 17:46:47 -0800796 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700797 if (itemInfo.isDisabled()) {
798 setContentDescription(getContext().getString(R.string.disabled_app_label,
799 itemInfo.contentDescription));
800 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800801 int count = mDotInfo.getNotificationCount();
Steven Ng707b1182021-09-13 11:54:58 +0100802 setContentDescription(
803 getAppLabelPluralString(itemInfo.contentDescription.toString(), count));
Tony Wickham305e9202018-01-23 17:46:47 -0800804 } else {
805 setContentDescription(itemInfo.contentDescription);
806 }
807 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800808 }
809 }
810
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800811 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
812 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
813 != 0) {
814 String percentageString = NumberFormat.getPercentInstance()
815 .format(progressLevel * 0.01);
816 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
817 setContentDescription(getContext()
818 .getString(
819 R.string.app_installing_title, info.title, percentageString));
820 } else if ((info.runtimeStatusFlags
821 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
822 setContentDescription(getContext()
823 .getString(
824 R.string.app_downloading_title, info.title, percentageString));
825 }
826 }
827 }
828
Winson Chungb745afb2015-03-02 11:51:23 -0800829 /**
830 * Sets the icon for this view based on the layout direction.
831 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700832 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700833 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700834 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700835 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700836 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800837 if (mIcon != null) {
838 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
839 }
Tony17b7f9b2017-05-23 12:19:09 -0700840 }
841
Jon Miranda9b78e192019-08-30 18:42:01 -0700842 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700843 public void setIconVisible(boolean visible) {
844 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700845 if (!mIsIconVisible) {
846 resetIconScale();
847 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700848 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700849 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700850 }
851
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400852 protected boolean iconUpdateAnimationEnabled() {
853 return mEnableIconUpdateAnimation;
854 }
855
Tony Wickham377ed3f2016-07-20 15:21:04 -0700856 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700857 // If we had already set an icon before, disable relayout as the icon size is the
858 // same as before.
859 mDisableRelayout = mIcon != null;
860
861 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700862
863 updateIcon(icon);
864
865 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400866 if (mIcon != null
867 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400868 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000869 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800870 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700871
Sunny Goyal66dccad2018-03-19 12:00:51 -0700872 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800873 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700874
Sunny Goyal69b75642015-05-15 17:00:24 -0700875 @Override
876 public void requestLayout() {
877 if (!mDisableRelayout) {
878 super.requestLayout();
879 }
880 }
881
Sunny Goyal34b65272015-03-11 16:56:52 -0700882 /**
883 * Applies the item info if it is same as what the view is pointing to currently.
884 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800885 @Override
886 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700887 if (getTag() == info) {
888 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700889 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400890 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700891
Jon Miranda7f522a22017-07-28 11:56:47 -0700892 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700893 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700894
Sunny Goyal34b65272015-03-11 16:56:52 -0700895 if (info instanceof AppInfo) {
896 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700897 } else if (info instanceof WorkspaceItemInfo) {
898 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700899 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700900 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700901 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600902 } else if (info instanceof SearchActionItemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700903 applyFromItemInfoWithIcon((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700904 }
Winsonc0880492015-08-21 11:16:27 -0700905
Sunny Goyal69b75642015-05-15 17:00:24 -0700906 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400907 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700908 }
909 }
910
911 /**
912 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
913 */
914 public void verifyHighRes() {
915 if (mIconLoadRequest != null) {
916 mIconLoadRequest.cancel();
917 mIconLoadRequest = null;
918 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800919 if (getTag() instanceof ItemInfoWithIcon) {
920 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700921 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800922 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700923 .updateIconInBackground(BubbleTextView.this, info);
924 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700925 }
926 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700927
Jon Miranda47170112017-03-03 14:57:14 -0800928 public int getIconSize() {
929 return mIconSize;
930 }
Adam Cohen65086992020-02-19 08:40:49 -0800931
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700932 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100933 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
Nick Chameyev4dd41592021-08-27 14:11:53 +0100934 + mTranslationForMoveFromCenterAnimation.x
935 + mTranslationXForTaskbarAlignmentAnimation);
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100936 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
937 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700938 }
939
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700940 public void setReorderBounceOffset(float x, float y) {
941 mTranslationForReorderBounce.set(x, y);
942 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700943 }
944
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700945 public void getReorderBounceOffset(PointF offset) {
946 offset.set(mTranslationForReorderBounce);
947 }
948
949 @Override
950 public void setReorderPreviewOffset(float x, float y) {
951 mTranslationForReorderPreview.set(x, y);
952 updateTranslation();
953 }
954
955 @Override
956 public void getReorderPreviewOffset(PointF offset) {
957 offset.set(mTranslationForReorderPreview);
958 }
959
960 public void setReorderBounceScale(float scale) {
961 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700962 super.setScaleX(scale);
963 super.setScaleY(scale);
964 }
965
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700966 public float getReorderBounceScale() {
967 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700968 }
969
Nick Chameyev4dd41592021-08-27 14:11:53 +0100970 /**
971 * Sets translation values for move from center animation
972 */
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100973 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
974 mTranslationForMoveFromCenterAnimation.set(x, y);
975 updateTranslation();
976 }
977
Nick Chameyev4dd41592021-08-27 14:11:53 +0100978 /**
979 * Sets translationX for taskbar to launcher alignment animation
980 */
981 public void setTranslationXForTaskbarAlignmentAnimation(float translationX) {
982 mTranslationXForTaskbarAlignmentAnimation = translationX;
983 updateTranslation();
984 }
985
986 /**
987 * Returns translationX value for taskbar to launcher alignment animation
988 */
989 public float getTranslationXForTaskbarAlignmentAnimation() {
990 return mTranslationXForTaskbarAlignmentAnimation;
991 }
992
Adam Cohend9162062020-03-24 16:35:35 -0700993 public View getView() {
994 return this;
995 }
996
Adam Cohen65086992020-02-19 08:40:49 -0800997 @Override
998 public int getViewType() {
999 return DRAGGABLE_ICON;
1000 }
1001
1002 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -07001003 public void getWorkspaceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001004 getIconBounds(mIconSize, bounds);
Adam Cohen65086992020-02-19 08:40:49 -08001005 }
1006
Adam Cohenc77bc452020-05-07 11:55:19 -07001007 private int getIconSizeForDisplay(int display) {
1008 DeviceProfile grid = mActivity.getDeviceProfile();
1009 switch (display) {
1010 case DISPLAY_ALL_APPS:
1011 return grid.allAppsIconSizePx;
Adam Cohenc77bc452020-05-07 11:55:19 -07001012 case DISPLAY_FOLDER:
Tony Wickham8ac277e2021-05-24 15:47:38 -07001013 return grid.folderChildIconSizePx;
1014 case DISPLAY_WORKSPACE:
Adam Cohenc77bc452020-05-07 11:55:19 -07001015 default:
1016 return grid.iconSizePx;
1017 }
1018 }
1019
1020 public void getSourceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001021 getIconBounds(mIconSize, bounds);
Adam Cohenc77bc452020-05-07 11:55:19 -07001022 }
1023
Adam Cohen65086992020-02-19 08:40:49 -08001024 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -07001025 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001026 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -08001027 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -07001028 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -08001029 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001030
1031 private void resetIconScale() {
1032 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -07001033 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001034 }
1035 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -07001036
1037 private void updateIcon(Drawable newIcon) {
1038 if (mLayoutHorizontal) {
1039 setCompoundDrawablesRelative(newIcon, null, null, null);
1040 } else {
1041 setCompoundDrawables(null, newIcon, null, null);
1042 }
1043 }
Steven Ng707b1182021-09-13 11:54:58 +01001044
1045 private String getAppLabelPluralString(String appName, int notificationCount) {
1046 MessageFormat icuCountFormat = new MessageFormat(
1047 getResources().getString(R.string.dotted_app_label),
1048 Locale.getDefault());
1049 HashMap<String, Object> args = new HashMap();
1050 args.put("app_name", appName);
1051 args.put("count", notificationCount);
1052 return icuCountFormat.format(args);
1053 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001054}