blob: 521d8f4562af7fc5eeb895bc1dd5ecc359e688b9 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal14168432019-10-24 15:59:49 -070019import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080020import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
21
Tony4043b052018-08-17 13:47:39 -070022import android.animation.Animator;
23import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080024import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070026import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070027import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070029import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070030import android.graphics.Paint;
Adam Cohend9162062020-03-24 16:35:35 -070031import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080032import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070033import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.graphics.drawable.Drawable;
Steven Ng707b1182021-09-13 11:54:58 +010035import android.icu.text.MessageFormat;
Sunny Goyal66dccad2018-03-19 12:00:51 -070036import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080037import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080038import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070039import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070040import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080041import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070042import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080043import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080044import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070045
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000046import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080047import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070048
Adam Cohen29794c52019-06-21 12:50:30 -070049import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080050import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080051import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070052import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080053import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070054import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080055import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080056import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070057import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080058import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyal572aca42021-03-24 15:21:39 -070059import com.android.launcher3.icons.PlaceHolderIconDrawable;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080060import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070061import com.android.launcher3.model.data.AppInfo;
62import com.android.launcher3.model.data.ItemInfo;
63import com.android.launcher3.model.data.ItemInfoWithIcon;
64import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060065import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070066import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070067import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080068import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070069import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070070
Sunny Goyalc469aad2015-10-01 11:24:23 -070071import java.text.NumberFormat;
Steven Ng707b1182021-09-13 11:54:58 +010072import java.util.HashMap;
73import java.util.Locale;
Sunny Goyalc469aad2015-10-01 11:24:23 -070074
The Android Open Source Project31dd5032009-03-03 19:32:27 -080075/**
76 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
77 * because we want to make the bubble taller than the text and TextView's clip is
78 * too aggressive.
79 */
Sunny Goyalb65d7662021-03-07 15:09:11 -080080public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080081 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070082
Sunny Goyaldfaccf62015-05-11 16:30:44 -070083 private static final int DISPLAY_WORKSPACE = 0;
84 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070085 private static final int DISPLAY_FOLDER = 2;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -070086 protected static final int DISPLAY_TASKBAR = 5;
87 private static final int DISPLAY_SEARCH_RESULT = 6;
88 private static final int DISPLAY_SEARCH_RESULT_SMALL = 7;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070089
Samuel Fufad6bacdc2020-08-23 21:56:07 -070090 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070091 private static final float HIGHLIGHT_SCALE = 1.16f;
92
Adam Cohen1d13c0b2020-04-21 16:29:12 -070093 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
94 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
95
Nick Chameyev4dd41592021-08-27 14:11:53 +010096 private float mTranslationXForTaskbarAlignmentAnimation = 0f;
97
Nick Chameyev5e8dbe72021-07-26 14:56:50 +010098 private final PointF mTranslationForMoveFromCenterAnimation = new PointF(0, 0);
99
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700100 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800101
Tony Wickhamf34bee82018-12-03 18:11:39 -0800102 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
103 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800104 @Override
105 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800106 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800107 }
108
109 @Override
110 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800111 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800112 bubbleTextView.invalidate();
113 }
114 };
115
Sunny Goyaled7a6932018-04-13 11:41:50 -0700116 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
117 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700118 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700119 public Float get(BubbleTextView bubbleTextView) {
120 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700121 }
122
123 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700124 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700125 bubbleTextView.setTextAlpha(alpha);
126 }
127 };
128
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800129 private final ActivityContext mActivity;
Sunny Goyalc4c32692021-05-21 14:23:29 -0700130 private FastBitmapDrawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800131 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700132
Tony Wickham794fe4f2021-01-11 14:54:23 -0600133 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700134
Sunny Goyaled7a6932018-04-13 11:41:50 -0700135 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700136
137 private final boolean mLayoutHorizontal;
138 private final int mIconSize;
139
140 @ViewDebug.ExportedProperty(category = "launcher")
141 private boolean mIsIconVisible = true;
142 @ViewDebug.ExportedProperty(category = "launcher")
143 private int mTextColor;
144 @ViewDebug.ExportedProperty(category = "launcher")
145 private float mTextAlpha = 1;
146
Tony4043b052018-08-17 13:47:39 -0700147 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800148 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800149 private DotRenderer mDotRenderer;
150 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700151 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800152 private Animator mDotScaleAnim;
153 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700154
Sunny Goyal4ffec482016-02-09 11:28:52 -0800155 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800156 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800157 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700158 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800159 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700160 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500161
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800162 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700163
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400164 private boolean mEnableIconUpdateAnimation = false;
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700165 private ItemInfoUpdateReceiver mItemInfoUpdateReceiver;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400166
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700168 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800169 }
170
171 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700172 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173 }
174
175 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
176 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800177 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700178
Adam Cohen96bb7982014-07-07 11:58:56 -0700179 TypedArray a = context.obtainStyledAttributes(attrs,
180 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800181 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700182 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700183
Samuel Fufac96fa242019-09-26 23:06:32 -0700184 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700185 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700186 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700187 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700188 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700189 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500190 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700191 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700192 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
193 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700194 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700195 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700196 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700197 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700198 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700199 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
200 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
201 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
202 defaultIconSize = getResources().getDimensionPixelSize(
203 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600204 } else if (mDisplay == DISPLAY_TASKBAR) {
205 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700206 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700207 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700208 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700209 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700210
Winson1f064272016-07-18 17:18:02 -0700211 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700212
213 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
214 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700215 a.recycle();
216
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800217 mLongPressHelper = new CheckLongPressHelper(this);
218
Tony Wickham8912b042018-11-29 15:28:53 -0800219 mDotParams = new DotRenderer.DrawParams();
220
Sunny Goyal66dccad2018-03-19 12:00:51 -0700221 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700222 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700223 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800224 }
225
Sunny Goyal66dccad2018-03-19 12:00:51 -0700226 @Override
227 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
228 // Disable marques when not focused to that, so that updating text does not cause relayout.
229 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
230 super.onFocusChanged(focused, direction, previouslyFocusedRect);
231 }
232
Jon Miranda52549442017-10-26 11:28:06 -0700233 /**
234 * Resets the view so it can be recycled.
235 */
236 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800237 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800238 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800239 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800240 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800241 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800242 setBackground(null);
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700243 mItemInfoUpdateReceiver = null;
Jon Miranda52549442017-10-26 11:28:06 -0700244 }
245
Tony Wickhamf34bee82018-12-03 18:11:39 -0800246 private void cancelDotScaleAnim() {
247 if (mDotScaleAnim != null) {
248 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700249 }
250 }
251
Tony Wickhamf34bee82018-12-03 18:11:39 -0800252 private void animateDotScale(float... dotScales) {
253 cancelDotScaleAnim();
254 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
255 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700256 @Override
257 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800258 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700259 }
260 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800261 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700262 }
263
Hyunyoung Song5809a402021-02-02 01:19:18 -0800264 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700265 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700266 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
267 }
268
269 @UiThread
270 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700271 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700272 }
273
Tony Wickham175d1522021-08-25 09:18:41 -0700274 /**
275 * Returns whether the newInfo differs from the current getTag().
276 */
277 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
278 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
279 ? (WorkspaceItemInfo) getTag()
280 : null;
281 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
282 && newInfo.getTargetComponent() != null
283 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
284 return changedIcons && isShown();
285 }
286
Adam Cohen29794c52019-06-21 12:50:30 -0700287 @Override
288 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
289 if (delegate instanceof LauncherAccessibilityDelegate) {
290 super.setAccessibilityDelegate(delegate);
291 } else {
292 // NO-OP
293 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
294 // delegate incorrectly. There are no cases when we shouldn't be using the
295 // LauncherAccessibilityDelegate for BubbleTextView.
296 }
297 }
298
Hyunyoung Song5809a402021-02-02 01:19:18 -0800299 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700300 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800301 applyIconAndLabel(info);
sfufa@google.comca76de02021-09-24 08:55:48 -0700302 setItemInfo(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000303 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800304 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800305 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800306 }
307
Hyunyoung Song5809a402021-02-02 01:19:18 -0800308 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700309 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800310 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700311
Sunny Goyal95899162019-03-27 16:03:06 -0700312 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700313 setItemInfo(info);
314
Sunny Goyal34b65272015-03-11 16:56:52 -0700315
316 // Verify high res immediately
317 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800318
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000319 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800320 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700321 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800322 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800323 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700324 }
325
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700326 /**
327 * Apply label and tag using a generic {@link ItemInfoWithIcon}
328 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800329 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700330 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800331 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700332 // We don't need to check the info since it's not a WorkspaceItemInfo
sfufa@google.comca76de02021-09-24 08:55:48 -0700333 setItemInfo(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700334
335 // Verify high res immediately
336 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800337
338 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700339 }
340
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700341 private void setItemInfo(ItemInfoWithIcon itemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700342 setTag(itemInfo);
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700343 if (mItemInfoUpdateReceiver != null) {
344 mItemInfoUpdateReceiver.reapplyItemInfo(itemInfo);
sfufa@google.comca76de02021-09-24 08:55:48 -0700345 }
Samuel Fufa02be2a42020-09-23 00:45:27 -0700346 }
347
sfufa@google.com0fe464d2021-10-14 14:34:50 -0700348 public void setItemInfoUpdateReceiver(
349 ItemInfoUpdateReceiver itemInfoUpdateReceiver) {
350 mItemInfoUpdateReceiver = itemInfoUpdateReceiver;
351 }
352
Hyunyoung Song5809a402021-02-02 01:19:18 -0800353 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600354 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700355 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
356 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyal9ab43772021-04-23 11:40:58 -0700357 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), useTheme);
Sunny Goyal67555872021-05-21 12:56:55 -0700358 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800359
Sunny Goyalf4204382016-07-13 10:46:07 -0700360 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000361 applyLabel(info);
362 }
363
Hyunyoung Song5809a402021-02-02 01:19:18 -0800364 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000365 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700366 setText(info.title);
367 if (info.contentDescription != null) {
368 setContentDescription(info.isDisabled()
369 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
370 : info.contentDescription);
371 }
372 }
373
Winson Chung7501adf2015-06-02 11:24:28 -0700374 /**
375 * Overrides the default long press timeout.
376 */
Tony2ca999c2018-09-24 17:24:51 -0400377 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
378 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700379 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700380
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800381 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800382 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700383 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800384 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800385 }
Sunny Goyal508da152014-08-14 10:53:27 -0700386 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800387
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800388 @Override
389 protected int[] onCreateDrawableState(int extraSpace) {
390 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
391 if (mStayPressed) {
392 mergeDrawableStates(drawableState, STATE_PRESSED);
393 }
394 return drawableState;
395 }
396
Winson Chungb745afb2015-03-02 11:51:23 -0800397 /** Returns the icon for this view. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700398 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800399 return mIcon;
400 }
401
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700402 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800403 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700404 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700405 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700406 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700407 return false;
408 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700409 if (isLongClickable()) {
410 super.onTouchEvent(event);
411 mLongPressHelper.onTouchEvent(event);
412 // Keep receiving the rest of the events
413 return true;
414 } else {
415 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700416 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800417 }
418
Sunny Goyal44a3b202020-07-09 08:27:06 -0700419 /**
420 * Returns true if the touch down at the provided position be ignored
421 */
422 protected boolean shouldIgnoreTouchDown(float x, float y) {
Tony Wickham42b03952021-08-31 10:41:36 -0700423 if (mDisplay == DISPLAY_TASKBAR) {
424 // Allow touching within padding on taskbar, given icon sizes are smaller.
425 return false;
426 }
Sunny Goyal44a3b202020-07-09 08:27:06 -0700427 return y < getPaddingTop()
428 || x < getPaddingLeft()
429 || y > getHeight() - getPaddingBottom()
430 || x > getWidth() - getPaddingRight();
431 }
432
Michael Jurkaddd62e92011-02-16 17:49:14 -0800433 void setStayPressed(boolean stayPressed) {
434 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800435 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800436 }
437
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700438 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800439 public void onVisibilityAggregated(boolean isVisible) {
440 super.onVisibilityAggregated(isVisible);
441 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800442 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800443 }
444 }
445
Tony Wickham8ac277e2021-05-24 15:47:38 -0700446 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700447 setPressed(false);
448 setStayPressed(false);
449 }
450
451 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700452 public boolean onKeyUp(int keyCode, KeyEvent event) {
453 // Unlike touch events, keypress event propagate pressed state change immediately,
454 // without waiting for onClickHandler to execute. Disable pressed state changes here
455 // to avoid flickering.
456 mIgnorePressedStateChange = true;
457 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700458 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800459 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700460 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800461 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800462
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700463 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800464 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700465 super.onDraw(canvas);
466 }
467
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700469 public void onDraw(Canvas canvas) {
470 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800471 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700472 }
473
Tony Wickham1237df02017-02-24 08:59:36 -0800474 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800475 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700476 *
Tony Wickham1237df02017-02-24 08:59:36 -0800477 * @param canvas The canvas to draw to.
478 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800479 protected void drawDotIfNecessary(Canvas canvas) {
480 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800481 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700482 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
483 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800484 final int scrollX = getScrollX();
485 final int scrollY = getScrollY();
486 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800487 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800488 canvas.translate(-scrollX, -scrollY);
489 }
490 }
491
Jon Miranda9b78e192019-08-30 18:42:01 -0700492 @Override
493 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800494 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800495 return;
496 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800497 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800498
Tony Wickhamf34bee82018-12-03 18:11:39 -0800499 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800500 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800501 } else if (hasDot()) {
502 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800503 }
504 }
505
Tony Wickhamf34bee82018-12-03 18:11:39 -0800506 private boolean hasDot() {
507 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800508 }
509
510 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700511 getIconBounds(this, outBounds, mIconSize);
512 }
513
514 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
515 int top = iconView.getPaddingTop();
516 int left = (iconView.getWidth() - iconSize) / 2;
517 int right = left + iconSize;
518 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800519 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800520 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400521
Jon Miranda228877d2021-02-09 11:05:00 -0500522
523 /**
524 * Sets whether to vertically center the content.
525 */
526 public void setCenterVertically(boolean centerVertically) {
527 mCenterVertically = centerVertically;
528 }
529
Joe Onorato9c1289c2009-08-17 11:03:03 -0400530 @Override
Winson1f064272016-07-18 17:18:02 -0700531 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
532 if (mCenterVertically) {
533 Paint.FontMetrics fm = getPaint().getFontMetrics();
534 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
535 (int) Math.ceil(fm.bottom - fm.top);
536 int height = MeasureSpec.getSize(heightMeasureSpec);
537 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
538 getPaddingBottom());
539 }
540 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
541 }
542
543 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700544 public void setTextColor(int color) {
545 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700546 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700547 }
548
Adam Cohen96bb7982014-07-07 11:58:56 -0700549 @Override
550 public void setTextColor(ColorStateList colors) {
551 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700552 if (Float.compare(mTextAlpha, 1) == 0) {
553 super.setTextColor(colors);
554 } else {
555 super.setTextColor(getModifiedColor());
556 }
Adam Cohen477828c2013-09-20 12:05:49 -0700557 }
558
Tony7308cde2017-06-27 22:38:33 -0700559 public boolean shouldTextBeVisible() {
560 // Text should be visible everywhere but the hotseat.
561 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
562 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700563 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
564 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700565 }
566
Winson Chung5f8afe62013-08-12 16:19:28 -0700567 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700568 setTextAlpha(visible ? 1 : 0);
569 }
570
571 private void setTextAlpha(float alpha) {
572 mTextAlpha = alpha;
573 super.setTextColor(getModifiedColor());
574 }
575
576 private int getModifiedColor() {
577 if (mTextAlpha == 0) {
578 // Special case to prevent text shadows in high contrast mode
579 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700580 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800581 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700582 }
583
584 /**
585 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700586 *
Tony8f402802017-06-16 17:24:54 -0700587 * @param fadeIn Whether the text should fade in or fade out.
588 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700589 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700590 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700591 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700592 }
593
Winson Chungaffd7b42010-08-20 15:11:56 -0700594 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800595 public void cancelLongPress() {
596 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800597 mLongPressHelper.cancelLongPress();
598 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500599
Samuel Fufac2820182021-01-22 11:47:25 -0600600 /**
601 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000602 *
603 * If this app is installing, the progress bar will be updated with the installation progress.
604 * If this app is installed and downloading incrementally, the progress bar will be updated
605 * with the total download progress.
606 */
607 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800608 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700609 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000610 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
611 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800612 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000613 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800614 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
615 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700616 }
617 }
618 }
619
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800620 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
621 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000622 if (preloadDrawable != null && maybePerformFinishedAnimation) {
623 preloadDrawable.maybePerformFinishedAnimation();
624 }
625 }
626
627 /** Applies the given progress level to the this icon's progress bar. */
628 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800629 public PreloadIconDrawable applyProgressLevel() {
630 if (!(getTag() instanceof ItemInfoWithIcon)) {
631 return null;
632 }
633
634 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
635 int progressLevel = info.getProgressLevel();
636 if (progressLevel >= 100) {
637 setContentDescription(info.contentDescription != null
638 ? info.contentDescription : "");
639 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800640 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800641 } else {
642 setContentDescription(getContext()
643 .getString(R.string.app_waiting_download_title, info.title));
644 }
645 if (mIcon != null) {
646 PreloadIconDrawable preloadIconDrawable;
647 if (mIcon instanceof PreloadIconDrawable) {
648 preloadIconDrawable = (PreloadIconDrawable) mIcon;
649 preloadIconDrawable.setLevel(progressLevel);
650 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700651 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800652 preloadIconDrawable = makePreloadIcon();
653 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700654 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800655 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400656 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700657 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400658 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700659
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800660 /**
661 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
662 * object.
663 */
664 @Nullable
665 public PreloadIconDrawable makePreloadIcon() {
666 if (!(getTag() instanceof ItemInfoWithIcon)) {
667 return null;
668 }
669
670 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
671 int progressLevel = info.getProgressLevel();
672 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
673
674 preloadDrawable.setLevel(progressLevel);
675 preloadDrawable.setIsDisabled(!info.isAppStartable());
676
677 return preloadDrawable;
678 }
679
Tony Wickhamf34bee82018-12-03 18:11:39 -0800680 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800681 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800682 boolean wasDotted = mDotInfo != null;
683 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
684 boolean isDotted = mDotInfo != null;
685 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700686 if (mDisplay == DISPLAY_ALL_APPS) {
687 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
688 } else {
689 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
690 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800691 if (wasDotted || isDotted) {
692 // Animate when a dot is first added or when it is removed.
693 if (animate && (wasDotted ^ isDotted) && isShown()) {
694 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800695 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800696 cancelDotScaleAnim();
697 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800698 invalidate();
699 }
700 }
Tony Wickham305e9202018-01-23 17:46:47 -0800701 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700702 if (itemInfo.isDisabled()) {
703 setContentDescription(getContext().getString(R.string.disabled_app_label,
704 itemInfo.contentDescription));
705 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800706 int count = mDotInfo.getNotificationCount();
Steven Ng707b1182021-09-13 11:54:58 +0100707 setContentDescription(
708 getAppLabelPluralString(itemInfo.contentDescription.toString(), count));
Tony Wickham305e9202018-01-23 17:46:47 -0800709 } else {
710 setContentDescription(itemInfo.contentDescription);
711 }
712 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800713 }
714 }
715
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800716 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
717 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
718 != 0) {
719 String percentageString = NumberFormat.getPercentInstance()
720 .format(progressLevel * 0.01);
721 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
722 setContentDescription(getContext()
723 .getString(
724 R.string.app_installing_title, info.title, percentageString));
725 } else if ((info.runtimeStatusFlags
726 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
727 setContentDescription(getContext()
728 .getString(
729 R.string.app_downloading_title, info.title, percentageString));
730 }
731 }
732 }
733
Winson Chungb745afb2015-03-02 11:51:23 -0800734 /**
735 * Sets the icon for this view based on the layout direction.
736 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700737 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700738 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700739 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700740 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700741 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800742 if (mIcon != null) {
743 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
744 }
Tony17b7f9b2017-05-23 12:19:09 -0700745 }
746
Jon Miranda9b78e192019-08-30 18:42:01 -0700747 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700748 public void setIconVisible(boolean visible) {
749 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700750 if (!mIsIconVisible) {
751 resetIconScale();
752 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700753 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700754 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700755 }
756
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400757 protected boolean iconUpdateAnimationEnabled() {
758 return mEnableIconUpdateAnimation;
759 }
760
Tony Wickham377ed3f2016-07-20 15:21:04 -0700761 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700762 // If we had already set an icon before, disable relayout as the icon size is the
763 // same as before.
764 mDisableRelayout = mIcon != null;
765
766 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700767
768 updateIcon(icon);
769
770 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400771 if (mIcon != null
772 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400773 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000774 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800775 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700776
Sunny Goyal66dccad2018-03-19 12:00:51 -0700777 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800778 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700779
Sunny Goyal69b75642015-05-15 17:00:24 -0700780 @Override
781 public void requestLayout() {
782 if (!mDisableRelayout) {
783 super.requestLayout();
784 }
785 }
786
Sunny Goyal34b65272015-03-11 16:56:52 -0700787 /**
788 * Applies the item info if it is same as what the view is pointing to currently.
789 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800790 @Override
791 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700792 if (getTag() == info) {
793 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700794 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400795 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700796
Jon Miranda7f522a22017-07-28 11:56:47 -0700797 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700798 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700799
Sunny Goyal34b65272015-03-11 16:56:52 -0700800 if (info instanceof AppInfo) {
801 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700802 } else if (info instanceof WorkspaceItemInfo) {
803 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700804 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700805 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700806 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600807 } else if (info instanceof SearchActionItemInfo) {
sfufa@google.comca76de02021-09-24 08:55:48 -0700808 applyFromItemInfoWithIcon((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700809 }
Winsonc0880492015-08-21 11:16:27 -0700810
Sunny Goyal69b75642015-05-15 17:00:24 -0700811 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400812 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700813 }
814 }
815
816 /**
817 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
818 */
819 public void verifyHighRes() {
820 if (mIconLoadRequest != null) {
821 mIconLoadRequest.cancel();
822 mIconLoadRequest = null;
823 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800824 if (getTag() instanceof ItemInfoWithIcon) {
825 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700826 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800827 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700828 .updateIconInBackground(BubbleTextView.this, info);
829 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700830 }
831 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700832
Jon Miranda47170112017-03-03 14:57:14 -0800833 public int getIconSize() {
834 return mIconSize;
835 }
Adam Cohen65086992020-02-19 08:40:49 -0800836
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700837 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100838 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
Nick Chameyev4dd41592021-08-27 14:11:53 +0100839 + mTranslationForMoveFromCenterAnimation.x
840 + mTranslationXForTaskbarAlignmentAnimation);
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100841 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
842 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700843 }
844
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700845 public void setReorderBounceOffset(float x, float y) {
846 mTranslationForReorderBounce.set(x, y);
847 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700848 }
849
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700850 public void getReorderBounceOffset(PointF offset) {
851 offset.set(mTranslationForReorderBounce);
852 }
853
854 @Override
855 public void setReorderPreviewOffset(float x, float y) {
856 mTranslationForReorderPreview.set(x, y);
857 updateTranslation();
858 }
859
860 @Override
861 public void getReorderPreviewOffset(PointF offset) {
862 offset.set(mTranslationForReorderPreview);
863 }
864
865 public void setReorderBounceScale(float scale) {
866 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700867 super.setScaleX(scale);
868 super.setScaleY(scale);
869 }
870
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700871 public float getReorderBounceScale() {
872 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700873 }
874
Nick Chameyev4dd41592021-08-27 14:11:53 +0100875 /**
876 * Sets translation values for move from center animation
877 */
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100878 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
879 mTranslationForMoveFromCenterAnimation.set(x, y);
880 updateTranslation();
881 }
882
Nick Chameyev4dd41592021-08-27 14:11:53 +0100883 /**
884 * Sets translationX for taskbar to launcher alignment animation
885 */
886 public void setTranslationXForTaskbarAlignmentAnimation(float translationX) {
887 mTranslationXForTaskbarAlignmentAnimation = translationX;
888 updateTranslation();
889 }
890
891 /**
892 * Returns translationX value for taskbar to launcher alignment animation
893 */
894 public float getTranslationXForTaskbarAlignmentAnimation() {
895 return mTranslationXForTaskbarAlignmentAnimation;
896 }
897
Adam Cohend9162062020-03-24 16:35:35 -0700898 public View getView() {
899 return this;
900 }
901
Adam Cohen65086992020-02-19 08:40:49 -0800902 @Override
903 public int getViewType() {
904 return DRAGGABLE_ICON;
905 }
906
907 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700908 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800909 DeviceProfile grid = mActivity.getDeviceProfile();
910 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
911 }
912
Adam Cohenc77bc452020-05-07 11:55:19 -0700913 private int getIconSizeForDisplay(int display) {
914 DeviceProfile grid = mActivity.getDeviceProfile();
915 switch (display) {
916 case DISPLAY_ALL_APPS:
917 return grid.allAppsIconSizePx;
Adam Cohenc77bc452020-05-07 11:55:19 -0700918 case DISPLAY_FOLDER:
Tony Wickham8ac277e2021-05-24 15:47:38 -0700919 return grid.folderChildIconSizePx;
920 case DISPLAY_WORKSPACE:
Adam Cohenc77bc452020-05-07 11:55:19 -0700921 default:
922 return grid.iconSizePx;
923 }
924 }
925
926 public void getSourceVisualDragBounds(Rect bounds) {
927 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
928 }
929
Adam Cohen65086992020-02-19 08:40:49 -0800930 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700931 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700932 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800933 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -0700934 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800935 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700936
937 private void resetIconScale() {
938 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -0700939 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700940 }
941 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700942
943 private void updateIcon(Drawable newIcon) {
944 if (mLayoutHorizontal) {
945 setCompoundDrawablesRelative(newIcon, null, null, null);
946 } else {
947 setCompoundDrawables(null, newIcon, null, null);
948 }
949 }
Steven Ng707b1182021-09-13 11:54:58 +0100950
951 private String getAppLabelPluralString(String appName, int notificationCount) {
952 MessageFormat icuCountFormat = new MessageFormat(
953 getResources().getString(R.string.dotted_app_label),
954 Locale.getDefault());
955 HashMap<String, Object> args = new HashMap();
956 args.put("app_name", appName);
957 args.put("count", notificationCount);
958 return icuCountFormat.format(args);
959 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800960}