blob: 1f1d57adc9010b0384f2ac7f19a5db5fac93d3f7 [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
Adam Cohen29794c52019-06-21 12:50:30 -070051import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
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")
152 private float mTextAlpha = 1;
153
Tony4043b052018-08-17 13:47:39 -0700154 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800155 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800156 private DotRenderer mDotRenderer;
157 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700158 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800159 private Animator mDotScaleAnim;
160 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700161
Sunny Goyal4ffec482016-02-09 11:28:52 -0800162 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800163 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800164 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700165 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800166 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700167 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500168
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800169 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700170
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400171 private boolean mEnableIconUpdateAnimation = false;
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700172 private BubbleTextHolder mBubbleTextHolder;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400173
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700175 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 }
177
178 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700179 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 }
181
182 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
183 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800184 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700185
Adam Cohen96bb7982014-07-07 11:58:56 -0700186 TypedArray a = context.obtainStyledAttributes(attrs,
187 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800188 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700189 mIsRtl = (getResources().getConfiguration().getLayoutDirection()
190 == View.LAYOUT_DIRECTION_RTL);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700191 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700192
Samuel Fufac96fa242019-09-26 23:06:32 -0700193 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700194 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700195 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700196 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700197 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700198 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500199 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700200 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700201 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
202 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700203 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700204 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700205 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700206 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700207 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700208 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
209 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
210 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
211 defaultIconSize = getResources().getDimensionPixelSize(
212 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600213 } else if (mDisplay == DISPLAY_TASKBAR) {
214 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700215 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700216 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700217 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700218 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700219
Winson1f064272016-07-18 17:18:02 -0700220 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700221
222 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
223 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700224 a.recycle();
225
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800226 mLongPressHelper = new CheckLongPressHelper(this);
227
Tony Wickham8912b042018-11-29 15:28:53 -0800228 mDotParams = new DotRenderer.DrawParams();
229
Sunny Goyal66dccad2018-03-19 12:00:51 -0700230 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700231 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700232 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800233 }
234
Sunny Goyal66dccad2018-03-19 12:00:51 -0700235 @Override
236 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
237 // Disable marques when not focused to that, so that updating text does not cause relayout.
238 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
239 super.onFocusChanged(focused, direction, previouslyFocusedRect);
240 }
241
Jon Miranda52549442017-10-26 11:28:06 -0700242 /**
243 * Resets the view so it can be recycled.
244 */
245 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800246 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800247 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800248 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800249 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800250 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800251 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700252 }
253
Tony Wickhamf34bee82018-12-03 18:11:39 -0800254 private void cancelDotScaleAnim() {
255 if (mDotScaleAnim != null) {
256 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700257 }
258 }
259
Tony Wickhamf34bee82018-12-03 18:11:39 -0800260 private void animateDotScale(float... dotScales) {
261 cancelDotScaleAnim();
262 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
263 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700264 @Override
265 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800266 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700267 }
268 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800269 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700270 }
271
Hyunyoung Song5809a402021-02-02 01:19:18 -0800272 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700273 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700274 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
275 }
276
277 @UiThread
278 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700279 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700280 }
281
Tony Wickham175d1522021-08-25 09:18:41 -0700282 /**
283 * Returns whether the newInfo differs from the current getTag().
284 */
285 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
286 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
287 ? (WorkspaceItemInfo) getTag()
288 : null;
289 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
290 && newInfo.getTargetComponent() != null
291 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
292 return changedIcons && isShown();
293 }
294
Adam Cohen29794c52019-06-21 12:50:30 -0700295 @Override
296 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
297 if (delegate instanceof LauncherAccessibilityDelegate) {
298 super.setAccessibilityDelegate(delegate);
299 } else {
300 // NO-OP
301 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
302 // delegate incorrectly. There are no cases when we shouldn't be using the
303 // LauncherAccessibilityDelegate for BubbleTextView.
304 }
305 }
306
Hyunyoung Song5809a402021-02-02 01:19:18 -0800307 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700308 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800309 applyIconAndLabel(info);
sfufa@google.comca76de02021-09-24 08:55:48 -0700310 setItemInfo(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000311 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800312 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800313 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800314 }
315
Hyunyoung Song5809a402021-02-02 01:19:18 -0800316 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700317 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800318 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700319
Sunny Goyal95899162019-03-27 16:03:06 -0700320 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700321 setItemInfo(info);
322
Sunny Goyal34b65272015-03-11 16:56:52 -0700323
324 // Verify high res immediately
325 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800326
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000327 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800328 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700329 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800330 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800331 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700332 }
333
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700334 /**
335 * Apply label and tag using a generic {@link ItemInfoWithIcon}
336 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800337 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700338 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800339 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700340 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700341 setItemInfo(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700342
343 // Verify high res immediately
344 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800345
346 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700347 }
348
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700349 private void setItemInfo(ItemInfoWithIcon itemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700350 setTag(itemInfo);
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700351 if (mBubbleTextHolder != null) {
352 mBubbleTextHolder.onItemInfoUpdated(itemInfo);
sfufa@google.comca76de02021-09-24 08:55:48 -0700353 }
Samuel Fufa02be2a42020-09-23 00:45:27 -0700354 }
355
sfufa@google.comd7bdd972021-10-19 12:41:56 -0700356 public void setBubbleTextHolder(
357 BubbleTextHolder bubbleTextHolder) {
358 mBubbleTextHolder = bubbleTextHolder;
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700359 }
360
Hyunyoung Song5809a402021-02-02 01:19:18 -0800361 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600362 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700363 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
364 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyal9ab43772021-04-23 11:40:58 -0700365 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), useTheme);
Sunny Goyal67555872021-05-21 12:56:55 -0700366 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800367
Sunny Goyalf4204382016-07-13 10:46:07 -0700368 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000369 applyLabel(info);
370 }
371
Hyunyoung Song5809a402021-02-02 01:19:18 -0800372 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000373 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700374 setText(info.title);
375 if (info.contentDescription != null) {
376 setContentDescription(info.isDisabled()
377 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
378 : info.contentDescription);
379 }
380 }
381
Winson Chung7501adf2015-06-02 11:24:28 -0700382 /**
383 * Overrides the default long press timeout.
384 */
Tony2ca999c2018-09-24 17:24:51 -0400385 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
386 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700387 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700388
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800389 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800390 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700391 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800392 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800393 }
Sunny Goyal508da152014-08-14 10:53:27 -0700394 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800395
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800396 @Override
397 protected int[] onCreateDrawableState(int extraSpace) {
398 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
399 if (mStayPressed) {
400 mergeDrawableStates(drawableState, STATE_PRESSED);
401 }
402 return drawableState;
403 }
404
Winson Chungb745afb2015-03-02 11:51:23 -0800405 /** Returns the icon for this view. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700406 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800407 return mIcon;
408 }
409
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700410 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800411 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700412 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700413 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700414 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700415 return false;
416 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700417 if (isLongClickable()) {
418 super.onTouchEvent(event);
419 mLongPressHelper.onTouchEvent(event);
420 // Keep receiving the rest of the events
421 return true;
422 } else {
423 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700424 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800425 }
426
Sunny Goyal44a3b202020-07-09 08:27:06 -0700427 /**
428 * Returns true if the touch down at the provided position be ignored
429 */
430 protected boolean shouldIgnoreTouchDown(float x, float y) {
Tony Wickham42b03952021-08-31 10:41:36 -0700431 if (mDisplay == DISPLAY_TASKBAR) {
432 // Allow touching within padding on taskbar, given icon sizes are smaller.
433 return false;
434 }
Sunny Goyal44a3b202020-07-09 08:27:06 -0700435 return y < getPaddingTop()
436 || x < getPaddingLeft()
437 || y > getHeight() - getPaddingBottom()
438 || x > getWidth() - getPaddingRight();
439 }
440
Michael Jurkaddd62e92011-02-16 17:49:14 -0800441 void setStayPressed(boolean stayPressed) {
442 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800443 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800444 }
445
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700446 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800447 public void onVisibilityAggregated(boolean isVisible) {
448 super.onVisibilityAggregated(isVisible);
449 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800450 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800451 }
452 }
453
Tony Wickham8ac277e2021-05-24 15:47:38 -0700454 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700455 setPressed(false);
456 setStayPressed(false);
457 }
458
459 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700460 public boolean onKeyUp(int keyCode, KeyEvent event) {
461 // Unlike touch events, keypress event propagate pressed state change immediately,
462 // without waiting for onClickHandler to execute. Disable pressed state changes here
463 // to avoid flickering.
464 mIgnorePressedStateChange = true;
465 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700466 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800467 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700468 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800469 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800470
Sunny Goyal0d69cb62021-10-04 15:31:38 -0700471 @Override
472 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
473 super.onSizeChanged(w, h, oldw, oldh);
474 checkForEllipsis();
475 }
476
477 @Override
478 protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
479 super.onTextChanged(text, start, lengthBefore, lengthAfter);
480 checkForEllipsis();
481 }
482
483 private void checkForEllipsis() {
484 if (!ENABLE_ICON_LABEL_AUTO_SCALING.get()) {
485 return;
486 }
487 float width = getWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();
488 if (width <= 0) {
489 return;
490 }
491 setLetterSpacing(0);
492
493 String text = getText().toString();
494 TextPaint paint = getPaint();
495 if (paint.measureText(text) < width) {
496 return;
497 }
498
499 float spacing = findBestSpacingValue(paint, text, width, MIN_LETTER_SPACING);
500 // Reset the paint value so that the call to TextView does appropriate diff.
501 paint.setLetterSpacing(0);
502 setLetterSpacing(spacing);
503 }
504
505 /**
506 * Find the appropriate text spacing to display the provided text
507 * @param paint the paint used by the text view
508 * @param text the text to display
509 * @param allowedWidthPx available space to render the text
510 * @param minSpacingEm minimum spacing allowed between characters
511 * @return the final textSpacing value
512 *
513 * @see #setLetterSpacing(float)
514 */
515 private float findBestSpacingValue(TextPaint paint, String text, float allowedWidthPx,
516 float minSpacingEm) {
517 paint.setLetterSpacing(minSpacingEm);
518 if (paint.measureText(text) > allowedWidthPx) {
519 // If there is no result at high limit, we can do anything more
520 return minSpacingEm;
521 }
522
523 float lowLimit = 0;
524 float highLimit = minSpacingEm;
525
526 for (int i = 0; i < MAX_SEARCH_LOOP_COUNT; i++) {
527 float value = (lowLimit + highLimit) / 2;
528 paint.setLetterSpacing(value);
529 if (paint.measureText(text) < allowedWidthPx) {
530 highLimit = value;
531 } else {
532 lowLimit = value;
533 }
534 }
535
536 // At the end error on the higher side
537 return highLimit;
538 }
539
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700540 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800541 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700542 super.onDraw(canvas);
543 }
544
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800545 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700546 public void onDraw(Canvas canvas) {
547 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800548 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700549 }
550
Tony Wickham1237df02017-02-24 08:59:36 -0800551 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800552 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700553 *
Tony Wickham1237df02017-02-24 08:59:36 -0800554 * @param canvas The canvas to draw to.
555 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800556 protected void drawDotIfNecessary(Canvas canvas) {
557 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800558 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700559 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
560 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800561 final int scrollX = getScrollX();
562 final int scrollY = getScrollY();
563 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800564 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800565 canvas.translate(-scrollX, -scrollY);
566 }
567 }
568
Jon Miranda9b78e192019-08-30 18:42:01 -0700569 @Override
570 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800571 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800572 return;
573 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800574 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800575
Tony Wickhamf34bee82018-12-03 18:11:39 -0800576 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800577 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800578 } else if (hasDot()) {
579 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800580 }
581 }
582
Tony Wickhamf34bee82018-12-03 18:11:39 -0800583 private boolean hasDot() {
584 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800585 }
586
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700587 /**
588 * Get the icon bounds on the view depending on the layout type.
589 */
Tony Wickham1237df02017-02-24 08:59:36 -0800590 public void getIconBounds(Rect outBounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700591 getIconBounds(mIconSize, outBounds);
Tony05d98c22018-07-23 08:01:15 -0700592 }
593
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700594 /**
595 * Get the icon bounds on the view depending on the layout type.
596 */
597 public void getIconBounds(int iconSize, Rect outBounds) {
598 Utilities.setRectToViewCenter(this, iconSize, outBounds);
599 if (mLayoutHorizontal) {
600 if (mIsRtl) {
601 outBounds.offsetTo(getWidth() - iconSize - getPaddingRight(), outBounds.top);
602 } else {
603 outBounds.offsetTo(getPaddingLeft(), outBounds.top);
604 }
605 } else {
606 outBounds.offsetTo(outBounds.left, getPaddingTop());
607 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800608 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400609
Jon Miranda228877d2021-02-09 11:05:00 -0500610 /**
611 * Sets whether to vertically center the content.
612 */
613 public void setCenterVertically(boolean centerVertically) {
614 mCenterVertically = centerVertically;
615 }
616
Joe Onorato9c1289c2009-08-17 11:03:03 -0400617 @Override
Winson1f064272016-07-18 17:18:02 -0700618 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
619 if (mCenterVertically) {
620 Paint.FontMetrics fm = getPaint().getFontMetrics();
621 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
622 (int) Math.ceil(fm.bottom - fm.top);
623 int height = MeasureSpec.getSize(heightMeasureSpec);
624 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
625 getPaddingBottom());
626 }
627 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
628 }
629
630 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700631 public void setTextColor(int color) {
632 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700633 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700634 }
635
Adam Cohen96bb7982014-07-07 11:58:56 -0700636 @Override
637 public void setTextColor(ColorStateList colors) {
638 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700639 if (Float.compare(mTextAlpha, 1) == 0) {
640 super.setTextColor(colors);
641 } else {
642 super.setTextColor(getModifiedColor());
643 }
Adam Cohen477828c2013-09-20 12:05:49 -0700644 }
645
Tony7308cde2017-06-27 22:38:33 -0700646 public boolean shouldTextBeVisible() {
647 // Text should be visible everywhere but the hotseat.
648 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
649 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700650 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
651 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700652 }
653
Winson Chung5f8afe62013-08-12 16:19:28 -0700654 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700655 setTextAlpha(visible ? 1 : 0);
656 }
657
658 private void setTextAlpha(float alpha) {
659 mTextAlpha = alpha;
660 super.setTextColor(getModifiedColor());
661 }
662
663 private int getModifiedColor() {
664 if (mTextAlpha == 0) {
665 // Special case to prevent text shadows in high contrast mode
666 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700667 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800668 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700669 }
670
671 /**
672 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700673 *
Tony8f402802017-06-16 17:24:54 -0700674 * @param fadeIn Whether the text should fade in or fade out.
675 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700676 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700677 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700678 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700679 }
680
Winson Chungaffd7b42010-08-20 15:11:56 -0700681 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800682 public void cancelLongPress() {
683 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800684 mLongPressHelper.cancelLongPress();
685 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500686
Samuel Fufac2820182021-01-22 11:47:25 -0600687 /**
688 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000689 *
690 * If this app is installing, the progress bar will be updated with the installation progress.
691 * If this app is installed and downloading incrementally, the progress bar will be updated
692 * with the total download progress.
693 */
694 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800695 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700696 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000697 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
698 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800699 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000700 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800701 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
702 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700703 }
704 }
705 }
706
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800707 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
708 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000709 if (preloadDrawable != null && maybePerformFinishedAnimation) {
710 preloadDrawable.maybePerformFinishedAnimation();
711 }
712 }
713
714 /** Applies the given progress level to the this icon's progress bar. */
715 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800716 public PreloadIconDrawable applyProgressLevel() {
717 if (!(getTag() instanceof ItemInfoWithIcon)) {
718 return null;
719 }
720
721 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
722 int progressLevel = info.getProgressLevel();
723 if (progressLevel >= 100) {
724 setContentDescription(info.contentDescription != null
725 ? info.contentDescription : "");
726 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800727 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800728 } else {
729 setContentDescription(getContext()
730 .getString(R.string.app_waiting_download_title, info.title));
731 }
732 if (mIcon != null) {
733 PreloadIconDrawable preloadIconDrawable;
734 if (mIcon instanceof PreloadIconDrawable) {
735 preloadIconDrawable = (PreloadIconDrawable) mIcon;
736 preloadIconDrawable.setLevel(progressLevel);
737 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700738 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800739 preloadIconDrawable = makePreloadIcon();
740 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700741 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800742 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400743 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700744 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400745 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700746
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800747 /**
748 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
749 * object.
750 */
751 @Nullable
752 public PreloadIconDrawable makePreloadIcon() {
753 if (!(getTag() instanceof ItemInfoWithIcon)) {
754 return null;
755 }
756
757 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
758 int progressLevel = info.getProgressLevel();
759 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
760
761 preloadDrawable.setLevel(progressLevel);
762 preloadDrawable.setIsDisabled(!info.isAppStartable());
763
764 return preloadDrawable;
765 }
766
Tony Wickhamf34bee82018-12-03 18:11:39 -0800767 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800768 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800769 boolean wasDotted = mDotInfo != null;
770 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
771 boolean isDotted = mDotInfo != null;
772 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700773 if (mDisplay == DISPLAY_ALL_APPS) {
774 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
775 } else {
776 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
777 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800778 if (wasDotted || isDotted) {
779 // Animate when a dot is first added or when it is removed.
780 if (animate && (wasDotted ^ isDotted) && isShown()) {
781 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800782 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800783 cancelDotScaleAnim();
784 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800785 invalidate();
786 }
787 }
Tony Wickham305e9202018-01-23 17:46:47 -0800788 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700789 if (itemInfo.isDisabled()) {
790 setContentDescription(getContext().getString(R.string.disabled_app_label,
791 itemInfo.contentDescription));
792 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800793 int count = mDotInfo.getNotificationCount();
Steven Ng707b1182021-09-13 11:54:58 +0100794 setContentDescription(
795 getAppLabelPluralString(itemInfo.contentDescription.toString(), count));
Tony Wickham305e9202018-01-23 17:46:47 -0800796 } else {
797 setContentDescription(itemInfo.contentDescription);
798 }
799 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800800 }
801 }
802
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800803 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
804 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
805 != 0) {
806 String percentageString = NumberFormat.getPercentInstance()
807 .format(progressLevel * 0.01);
808 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
809 setContentDescription(getContext()
810 .getString(
811 R.string.app_installing_title, info.title, percentageString));
812 } else if ((info.runtimeStatusFlags
813 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
814 setContentDescription(getContext()
815 .getString(
816 R.string.app_downloading_title, info.title, percentageString));
817 }
818 }
819 }
820
Winson Chungb745afb2015-03-02 11:51:23 -0800821 /**
822 * Sets the icon for this view based on the layout direction.
823 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700824 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700825 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700826 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700827 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700828 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800829 if (mIcon != null) {
830 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
831 }
Tony17b7f9b2017-05-23 12:19:09 -0700832 }
833
Jon Miranda9b78e192019-08-30 18:42:01 -0700834 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700835 public void setIconVisible(boolean visible) {
836 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700837 if (!mIsIconVisible) {
838 resetIconScale();
839 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700840 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700841 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700842 }
843
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400844 protected boolean iconUpdateAnimationEnabled() {
845 return mEnableIconUpdateAnimation;
846 }
847
Tony Wickham377ed3f2016-07-20 15:21:04 -0700848 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700849 // If we had already set an icon before, disable relayout as the icon size is the
850 // same as before.
851 mDisableRelayout = mIcon != null;
852
853 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700854
855 updateIcon(icon);
856
857 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400858 if (mIcon != null
859 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400860 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000861 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800862 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700863
Sunny Goyal66dccad2018-03-19 12:00:51 -0700864 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800865 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700866
Sunny Goyal69b75642015-05-15 17:00:24 -0700867 @Override
868 public void requestLayout() {
869 if (!mDisableRelayout) {
870 super.requestLayout();
871 }
872 }
873
Sunny Goyal34b65272015-03-11 16:56:52 -0700874 /**
875 * Applies the item info if it is same as what the view is pointing to currently.
876 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800877 @Override
878 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700879 if (getTag() == info) {
880 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700881 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400882 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700883
Jon Miranda7f522a22017-07-28 11:56:47 -0700884 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700885 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700886
Sunny Goyal34b65272015-03-11 16:56:52 -0700887 if (info instanceof AppInfo) {
888 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700889 } else if (info instanceof WorkspaceItemInfo) {
890 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700891 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700892 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700893 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600894 } else if (info instanceof SearchActionItemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700895 applyFromItemInfoWithIcon((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700896 }
Winsonc0880492015-08-21 11:16:27 -0700897
Sunny Goyal69b75642015-05-15 17:00:24 -0700898 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400899 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700900 }
901 }
902
903 /**
904 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
905 */
906 public void verifyHighRes() {
907 if (mIconLoadRequest != null) {
908 mIconLoadRequest.cancel();
909 mIconLoadRequest = null;
910 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800911 if (getTag() instanceof ItemInfoWithIcon) {
912 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700913 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800914 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700915 .updateIconInBackground(BubbleTextView.this, info);
916 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700917 }
918 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700919
Jon Miranda47170112017-03-03 14:57:14 -0800920 public int getIconSize() {
921 return mIconSize;
922 }
Adam Cohen65086992020-02-19 08:40:49 -0800923
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700924 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100925 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
Nick Chameyev4dd41592021-08-27 14:11:53 +0100926 + mTranslationForMoveFromCenterAnimation.x
927 + mTranslationXForTaskbarAlignmentAnimation);
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100928 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
929 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700930 }
931
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700932 public void setReorderBounceOffset(float x, float y) {
933 mTranslationForReorderBounce.set(x, y);
934 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700935 }
936
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700937 public void getReorderBounceOffset(PointF offset) {
938 offset.set(mTranslationForReorderBounce);
939 }
940
941 @Override
942 public void setReorderPreviewOffset(float x, float y) {
943 mTranslationForReorderPreview.set(x, y);
944 updateTranslation();
945 }
946
947 @Override
948 public void getReorderPreviewOffset(PointF offset) {
949 offset.set(mTranslationForReorderPreview);
950 }
951
952 public void setReorderBounceScale(float scale) {
953 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700954 super.setScaleX(scale);
955 super.setScaleY(scale);
956 }
957
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700958 public float getReorderBounceScale() {
959 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700960 }
961
Nick Chameyev4dd41592021-08-27 14:11:53 +0100962 /**
963 * Sets translation values for move from center animation
964 */
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100965 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
966 mTranslationForMoveFromCenterAnimation.set(x, y);
967 updateTranslation();
968 }
969
Nick Chameyev4dd41592021-08-27 14:11:53 +0100970 /**
971 * Sets translationX for taskbar to launcher alignment animation
972 */
973 public void setTranslationXForTaskbarAlignmentAnimation(float translationX) {
974 mTranslationXForTaskbarAlignmentAnimation = translationX;
975 updateTranslation();
976 }
977
978 /**
979 * Returns translationX value for taskbar to launcher alignment animation
980 */
981 public float getTranslationXForTaskbarAlignmentAnimation() {
982 return mTranslationXForTaskbarAlignmentAnimation;
983 }
984
Adam Cohend9162062020-03-24 16:35:35 -0700985 public View getView() {
986 return this;
987 }
988
Adam Cohen65086992020-02-19 08:40:49 -0800989 @Override
990 public int getViewType() {
991 return DRAGGABLE_ICON;
992 }
993
994 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700995 public void getWorkspaceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -0700996 getIconBounds(mIconSize, bounds);
Adam Cohen65086992020-02-19 08:40:49 -0800997 }
998
Adam Cohenc77bc452020-05-07 11:55:19 -0700999 private int getIconSizeForDisplay(int display) {
1000 DeviceProfile grid = mActivity.getDeviceProfile();
1001 switch (display) {
1002 case DISPLAY_ALL_APPS:
1003 return grid.allAppsIconSizePx;
Adam Cohenc77bc452020-05-07 11:55:19 -07001004 case DISPLAY_FOLDER:
Tony Wickham8ac277e2021-05-24 15:47:38 -07001005 return grid.folderChildIconSizePx;
1006 case DISPLAY_WORKSPACE:
Adam Cohenc77bc452020-05-07 11:55:19 -07001007 default:
1008 return grid.iconSizePx;
1009 }
1010 }
1011
1012 public void getSourceVisualDragBounds(Rect bounds) {
Hyunyoung Songc2f024b2021-11-03 23:16:53 -07001013 getIconBounds(mIconSize, bounds);
Adam Cohenc77bc452020-05-07 11:55:19 -07001014 }
1015
Adam Cohen65086992020-02-19 08:40:49 -08001016 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -07001017 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001018 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -08001019 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -07001020 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -08001021 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001022
1023 private void resetIconScale() {
1024 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -07001025 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -07001026 }
1027 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -07001028
1029 private void updateIcon(Drawable newIcon) {
1030 if (mLayoutHorizontal) {
1031 setCompoundDrawablesRelative(newIcon, null, null, null);
1032 } else {
1033 setCompoundDrawables(null, newIcon, null, null);
1034 }
1035 }
Steven Ng707b1182021-09-13 11:54:58 +01001036
1037 private String getAppLabelPluralString(String appName, int notificationCount) {
1038 MessageFormat icuCountFormat = new MessageFormat(
1039 getResources().getString(R.string.dotted_app_label),
1040 Locale.getDefault());
1041 HashMap<String, Object> args = new HashMap();
1042 args.put("app_name", appName);
1043 args.put("count", notificationCount);
1044 return icuCountFormat.format(args);
1045 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001046}