blob: 02ec5e8a8bd071ca6950fbe31e980804cffec550 [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;
Sunny Goyal66dccad2018-03-19 12:00:51 -070035import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080036import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080037import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070038import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070039import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080040import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070041import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080042import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080043import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070044
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000045import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080046import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070047
Adam Cohen29794c52019-06-21 12:50:30 -070048import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080049import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080050import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070051import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080052import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070053import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080054import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080055import com.android.launcher3.icons.DotRenderer;
Sunny Goyal572aca42021-03-24 15:21:39 -070056import com.android.launcher3.icons.FastBitmapDrawable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080057import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyal572aca42021-03-24 15:21:39 -070058import com.android.launcher3.icons.PlaceHolderIconDrawable;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080059import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070060import com.android.launcher3.model.data.AppInfo;
61import com.android.launcher3.model.data.ItemInfo;
62import com.android.launcher3.model.data.ItemInfoWithIcon;
63import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060064import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070065import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070066import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080067import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070068import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070069
Sunny Goyalc469aad2015-10-01 11:24:23 -070070import java.text.NumberFormat;
71
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072/**
73 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
74 * because we want to make the bubble taller than the text and TextView's clip is
75 * too aggressive.
76 */
Sunny Goyalb65d7662021-03-07 15:09:11 -080077public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080078 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070079
Sunny Goyaldfaccf62015-05-11 16:30:44 -070080 private static final int DISPLAY_WORKSPACE = 0;
81 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070082 private static final int DISPLAY_FOLDER = 2;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -070083 protected static final int DISPLAY_TASKBAR = 5;
84 private static final int DISPLAY_SEARCH_RESULT = 6;
85 private static final int DISPLAY_SEARCH_RESULT_SMALL = 7;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070086
Samuel Fufad6bacdc2020-08-23 21:56:07 -070087 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070088 private static final float HIGHLIGHT_SCALE = 1.16f;
89
Adam Cohen1d13c0b2020-04-21 16:29:12 -070090 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
91 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
92
Nick Chameyev5e8dbe72021-07-26 14:56:50 +010093 private final PointF mTranslationForMoveFromCenterAnimation = new PointF(0, 0);
94
Adam Cohen1d13c0b2020-04-21 16:29:12 -070095 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080096
Tony Wickhamf34bee82018-12-03 18:11:39 -080097 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
98 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080099 @Override
100 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800101 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800102 }
103
104 @Override
105 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800106 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800107 bubbleTextView.invalidate();
108 }
109 };
110
Sunny Goyaled7a6932018-04-13 11:41:50 -0700111 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
112 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700113 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700114 public Float get(BubbleTextView bubbleTextView) {
115 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700116 }
117
118 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700119 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700120 bubbleTextView.setTextAlpha(alpha);
121 }
122 };
123
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800124 private final ActivityContext mActivity;
Sunny Goyalc4c32692021-05-21 14:23:29 -0700125 private FastBitmapDrawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800126 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700127
Tony Wickham794fe4f2021-01-11 14:54:23 -0600128 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700129
Sunny Goyaled7a6932018-04-13 11:41:50 -0700130 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700131
132 private final boolean mLayoutHorizontal;
133 private final int mIconSize;
134
135 @ViewDebug.ExportedProperty(category = "launcher")
136 private boolean mIsIconVisible = true;
137 @ViewDebug.ExportedProperty(category = "launcher")
138 private int mTextColor;
139 @ViewDebug.ExportedProperty(category = "launcher")
140 private float mTextAlpha = 1;
141
Tony4043b052018-08-17 13:47:39 -0700142 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800143 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800144 private DotRenderer mDotRenderer;
145 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
Sunny Goyal67555872021-05-21 12:56:55 -0700146 protected DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800147 private Animator mDotScaleAnim;
148 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700149
Sunny Goyal4ffec482016-02-09 11:28:52 -0800150 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800151 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800152 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700153 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800154 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700155 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500156
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800157 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700158
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400159 private boolean mEnableIconUpdateAnimation = false;
160
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800161 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700162 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800163 }
164
165 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700166 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 }
168
169 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
170 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800171 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700172
Adam Cohen96bb7982014-07-07 11:58:56 -0700173 TypedArray a = context.obtainStyledAttributes(attrs,
174 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800175 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700176 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700177
Samuel Fufac96fa242019-09-26 23:06:32 -0700178 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700179 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700180 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700181 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700182 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700183 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500184 setCenterVertically(grid.isScalableGrid);
Samuel Fufac96fa242019-09-26 23:06:32 -0700185 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700186 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
187 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700188 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700189 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700190 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700191 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700192 defaultIconSize = grid.folderChildIconSizePx;
Hyunyoung Songe3d32b52021-06-03 21:20:18 -0700193 } else if (mDisplay == DISPLAY_SEARCH_RESULT) {
194 defaultIconSize = getResources().getDimensionPixelSize(R.dimen.search_row_icon_size);
195 } else if (mDisplay == DISPLAY_SEARCH_RESULT_SMALL) {
196 defaultIconSize = getResources().getDimensionPixelSize(
197 R.dimen.search_row_small_icon_size);
Tony Wickham794fe4f2021-01-11 14:54:23 -0600198 } else if (mDisplay == DISPLAY_TASKBAR) {
199 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700200 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700201 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700202 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700203 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700204
Winson1f064272016-07-18 17:18:02 -0700205 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700206
207 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
208 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700209 a.recycle();
210
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800211 mLongPressHelper = new CheckLongPressHelper(this);
212
Tony Wickham8912b042018-11-29 15:28:53 -0800213 mDotParams = new DotRenderer.DrawParams();
214
Sunny Goyal66dccad2018-03-19 12:00:51 -0700215 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700216 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700217 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800218 }
219
Sunny Goyal66dccad2018-03-19 12:00:51 -0700220 @Override
221 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
222 // Disable marques when not focused to that, so that updating text does not cause relayout.
223 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
224 super.onFocusChanged(focused, direction, previouslyFocusedRect);
225 }
226
Jon Miranda52549442017-10-26 11:28:06 -0700227 /**
228 * Resets the view so it can be recycled.
229 */
230 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800231 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800232 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800233 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800234 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800235 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800236 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700237 }
238
Tony Wickhamf34bee82018-12-03 18:11:39 -0800239 private void cancelDotScaleAnim() {
240 if (mDotScaleAnim != null) {
241 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700242 }
243 }
244
Tony Wickhamf34bee82018-12-03 18:11:39 -0800245 private void animateDotScale(float... dotScales) {
246 cancelDotScaleAnim();
247 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
248 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700249 @Override
250 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800251 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700252 }
253 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800254 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700255 }
256
Hyunyoung Song5809a402021-02-02 01:19:18 -0800257 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700258 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
Tony Wickham175d1522021-08-25 09:18:41 -0700259 applyFromWorkspaceItem(info, /* animate = */ false, /* staggerIndex = */ 0);
260 }
261
262 @UiThread
263 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean animate, int staggerIndex) {
Sunny Goyal95899162019-03-27 16:03:06 -0700264 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700265 }
266
Tony Wickham175d1522021-08-25 09:18:41 -0700267 /**
268 * Returns whether the newInfo differs from the current getTag().
269 */
270 public boolean shouldAnimateIconChange(WorkspaceItemInfo newInfo) {
271 WorkspaceItemInfo oldInfo = getTag() instanceof WorkspaceItemInfo
272 ? (WorkspaceItemInfo) getTag()
273 : null;
274 boolean changedIcons = oldInfo != null && oldInfo.getTargetComponent() != null
275 && newInfo.getTargetComponent() != null
276 && !oldInfo.getTargetComponent().equals(newInfo.getTargetComponent());
277 return changedIcons && isShown();
278 }
279
Adam Cohen29794c52019-06-21 12:50:30 -0700280 @Override
281 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
282 if (delegate instanceof LauncherAccessibilityDelegate) {
283 super.setAccessibilityDelegate(delegate);
284 } else {
285 // NO-OP
286 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
287 // delegate incorrectly. There are no cases when we shouldn't be using the
288 // LauncherAccessibilityDelegate for BubbleTextView.
289 }
290 }
291
Hyunyoung Song5809a402021-02-02 01:19:18 -0800292 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700293 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800294 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800295 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000296 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800297 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800298 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800299 }
300
Hyunyoung Song5809a402021-02-02 01:19:18 -0800301 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700302 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800303 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700304
Sunny Goyal95899162019-03-27 16:03:06 -0700305 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700306 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700307
308 // Verify high res immediately
309 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800310
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000311 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800312 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700313 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800314 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800315 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700316 }
317
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700318 /**
319 * Apply label and tag using a generic {@link ItemInfoWithIcon}
320 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800321 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700322 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800323 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700324 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700325 super.setTag(info);
326
327 // Verify high res immediately
328 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800329
330 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700331 }
332
Samuel Fufa02be2a42020-09-23 00:45:27 -0700333 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600334 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700335 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800336 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600337 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
338 applyIconAndLabel(searchActionItemInfo);
339 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700340 }
341
Hyunyoung Song5809a402021-02-02 01:19:18 -0800342 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600343 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal59f19152021-08-03 12:25:02 -0700344 boolean useTheme = mDisplay == DISPLAY_WORKSPACE || mDisplay == DISPLAY_FOLDER
345 || mDisplay == DISPLAY_TASKBAR;
Sunny Goyal9ab43772021-04-23 11:40:58 -0700346 FastBitmapDrawable iconDrawable = info.newIcon(getContext(), useTheme);
Sunny Goyal67555872021-05-21 12:56:55 -0700347 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800348
Sunny Goyalf4204382016-07-13 10:46:07 -0700349 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000350 applyLabel(info);
351 }
352
Hyunyoung Song5809a402021-02-02 01:19:18 -0800353 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000354 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700355 setText(info.title);
356 if (info.contentDescription != null) {
357 setContentDescription(info.isDisabled()
358 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
359 : info.contentDescription);
360 }
361 }
362
Winson Chung7501adf2015-06-02 11:24:28 -0700363 /**
364 * Overrides the default long press timeout.
365 */
Tony2ca999c2018-09-24 17:24:51 -0400366 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
367 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700368 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700369
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800370 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800371 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700372 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800373 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800374 }
Sunny Goyal508da152014-08-14 10:53:27 -0700375 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800376
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800377 @Override
378 protected int[] onCreateDrawableState(int extraSpace) {
379 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
380 if (mStayPressed) {
381 mergeDrawableStates(drawableState, STATE_PRESSED);
382 }
383 return drawableState;
384 }
385
Winson Chungb745afb2015-03-02 11:51:23 -0800386 /** Returns the icon for this view. */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700387 public FastBitmapDrawable getIcon() {
Winson Chungb745afb2015-03-02 11:51:23 -0800388 return mIcon;
389 }
390
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700391 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800392 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700393 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700394 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700395 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700396 return false;
397 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700398 if (isLongClickable()) {
399 super.onTouchEvent(event);
400 mLongPressHelper.onTouchEvent(event);
401 // Keep receiving the rest of the events
402 return true;
403 } else {
404 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700405 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800406 }
407
Sunny Goyal44a3b202020-07-09 08:27:06 -0700408 /**
409 * Returns true if the touch down at the provided position be ignored
410 */
411 protected boolean shouldIgnoreTouchDown(float x, float y) {
412 return y < getPaddingTop()
413 || x < getPaddingLeft()
414 || y > getHeight() - getPaddingBottom()
415 || x > getWidth() - getPaddingRight();
416 }
417
Michael Jurkaddd62e92011-02-16 17:49:14 -0800418 void setStayPressed(boolean stayPressed) {
419 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800420 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800421 }
422
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700423 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800424 public void onVisibilityAggregated(boolean isVisible) {
425 super.onVisibilityAggregated(isVisible);
426 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800427 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800428 }
429 }
430
Tony Wickham8ac277e2021-05-24 15:47:38 -0700431 public void clearPressedBackground() {
Sunny Goyal508da152014-08-14 10:53:27 -0700432 setPressed(false);
433 setStayPressed(false);
434 }
435
436 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700437 public boolean onKeyUp(int keyCode, KeyEvent event) {
438 // Unlike touch events, keypress event propagate pressed state change immediately,
439 // without waiting for onClickHandler to execute. Disable pressed state changes here
440 // to avoid flickering.
441 mIgnorePressedStateChange = true;
442 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700443 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800444 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700445 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800446 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800447
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700448 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800449 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700450 super.onDraw(canvas);
451 }
452
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800453 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700454 public void onDraw(Canvas canvas) {
455 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800456 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700457 }
458
Tony Wickham1237df02017-02-24 08:59:36 -0800459 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800460 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700461 *
Tony Wickham1237df02017-02-24 08:59:36 -0800462 * @param canvas The canvas to draw to.
463 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800464 protected void drawDotIfNecessary(Canvas canvas) {
465 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800466 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700467 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
468 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800469 final int scrollX = getScrollX();
470 final int scrollY = getScrollY();
471 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800472 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800473 canvas.translate(-scrollX, -scrollY);
474 }
475 }
476
Jon Miranda9b78e192019-08-30 18:42:01 -0700477 @Override
478 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800479 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800480 return;
481 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800482 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800483
Tony Wickhamf34bee82018-12-03 18:11:39 -0800484 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800485 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800486 } else if (hasDot()) {
487 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800488 }
489 }
490
Tony Wickhamf34bee82018-12-03 18:11:39 -0800491 private boolean hasDot() {
492 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800493 }
494
495 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700496 getIconBounds(this, outBounds, mIconSize);
497 }
498
499 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
500 int top = iconView.getPaddingTop();
501 int left = (iconView.getWidth() - iconSize) / 2;
502 int right = left + iconSize;
503 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800504 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800505 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400506
Jon Miranda228877d2021-02-09 11:05:00 -0500507
508 /**
509 * Sets whether to vertically center the content.
510 */
511 public void setCenterVertically(boolean centerVertically) {
512 mCenterVertically = centerVertically;
513 }
514
Joe Onorato9c1289c2009-08-17 11:03:03 -0400515 @Override
Winson1f064272016-07-18 17:18:02 -0700516 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
517 if (mCenterVertically) {
518 Paint.FontMetrics fm = getPaint().getFontMetrics();
519 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
520 (int) Math.ceil(fm.bottom - fm.top);
521 int height = MeasureSpec.getSize(heightMeasureSpec);
522 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
523 getPaddingBottom());
524 }
525 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
526 }
527
528 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700529 public void setTextColor(int color) {
530 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700531 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700532 }
533
Adam Cohen96bb7982014-07-07 11:58:56 -0700534 @Override
535 public void setTextColor(ColorStateList colors) {
536 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700537 if (Float.compare(mTextAlpha, 1) == 0) {
538 super.setTextColor(colors);
539 } else {
540 super.setTextColor(getModifiedColor());
541 }
Adam Cohen477828c2013-09-20 12:05:49 -0700542 }
543
Tony7308cde2017-06-27 22:38:33 -0700544 public boolean shouldTextBeVisible() {
545 // Text should be visible everywhere but the hotseat.
546 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
547 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700548 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
549 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700550 }
551
Winson Chung5f8afe62013-08-12 16:19:28 -0700552 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700553 setTextAlpha(visible ? 1 : 0);
554 }
555
556 private void setTextAlpha(float alpha) {
557 mTextAlpha = alpha;
558 super.setTextColor(getModifiedColor());
559 }
560
561 private int getModifiedColor() {
562 if (mTextAlpha == 0) {
563 // Special case to prevent text shadows in high contrast mode
564 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700565 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800566 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700567 }
568
569 /**
570 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700571 *
Tony8f402802017-06-16 17:24:54 -0700572 * @param fadeIn Whether the text should fade in or fade out.
573 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700574 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700575 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700576 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700577 }
578
Winson Chungaffd7b42010-08-20 15:11:56 -0700579 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800580 public void cancelLongPress() {
581 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800582 mLongPressHelper.cancelLongPress();
583 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500584
Samuel Fufac2820182021-01-22 11:47:25 -0600585 /**
586 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000587 *
588 * If this app is installing, the progress bar will be updated with the installation progress.
589 * If this app is installed and downloading incrementally, the progress bar will be updated
590 * with the total download progress.
591 */
592 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800593 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700594 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000595 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
596 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800597 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000598 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800599 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
600 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700601 }
602 }
603 }
604
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800605 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
606 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000607 if (preloadDrawable != null && maybePerformFinishedAnimation) {
608 preloadDrawable.maybePerformFinishedAnimation();
609 }
610 }
611
612 /** Applies the given progress level to the this icon's progress bar. */
613 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800614 public PreloadIconDrawable applyProgressLevel() {
615 if (!(getTag() instanceof ItemInfoWithIcon)) {
616 return null;
617 }
618
619 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
620 int progressLevel = info.getProgressLevel();
621 if (progressLevel >= 100) {
622 setContentDescription(info.contentDescription != null
623 ? info.contentDescription : "");
624 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800625 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800626 } else {
627 setContentDescription(getContext()
628 .getString(R.string.app_waiting_download_title, info.title));
629 }
630 if (mIcon != null) {
631 PreloadIconDrawable preloadIconDrawable;
632 if (mIcon instanceof PreloadIconDrawable) {
633 preloadIconDrawable = (PreloadIconDrawable) mIcon;
634 preloadIconDrawable.setLevel(progressLevel);
635 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700636 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800637 preloadIconDrawable = makePreloadIcon();
638 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700639 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800640 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400641 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700642 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400643 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700644
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800645 /**
646 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
647 * object.
648 */
649 @Nullable
650 public PreloadIconDrawable makePreloadIcon() {
651 if (!(getTag() instanceof ItemInfoWithIcon)) {
652 return null;
653 }
654
655 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
656 int progressLevel = info.getProgressLevel();
657 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
658
659 preloadDrawable.setLevel(progressLevel);
660 preloadDrawable.setIsDisabled(!info.isAppStartable());
661
662 return preloadDrawable;
663 }
664
Tony Wickhamf34bee82018-12-03 18:11:39 -0800665 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800666 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800667 boolean wasDotted = mDotInfo != null;
668 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
669 boolean isDotted = mDotInfo != null;
670 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700671 if (mDisplay == DISPLAY_ALL_APPS) {
672 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
673 } else {
674 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
675 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800676 if (wasDotted || isDotted) {
677 // Animate when a dot is first added or when it is removed.
678 if (animate && (wasDotted ^ isDotted) && isShown()) {
679 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800680 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800681 cancelDotScaleAnim();
682 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800683 invalidate();
684 }
685 }
Tony Wickham305e9202018-01-23 17:46:47 -0800686 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700687 if (itemInfo.isDisabled()) {
688 setContentDescription(getContext().getString(R.string.disabled_app_label,
689 itemInfo.contentDescription));
690 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800691 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800692 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800693 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800694 } else {
695 setContentDescription(itemInfo.contentDescription);
696 }
697 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800698 }
699 }
700
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800701 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
702 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
703 != 0) {
704 String percentageString = NumberFormat.getPercentInstance()
705 .format(progressLevel * 0.01);
706 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
707 setContentDescription(getContext()
708 .getString(
709 R.string.app_installing_title, info.title, percentageString));
710 } else if ((info.runtimeStatusFlags
711 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
712 setContentDescription(getContext()
713 .getString(
714 R.string.app_downloading_title, info.title, percentageString));
715 }
716 }
717 }
718
Winson Chungb745afb2015-03-02 11:51:23 -0800719 /**
720 * Sets the icon for this view based on the layout direction.
721 */
Sunny Goyalc4c32692021-05-21 14:23:29 -0700722 protected void setIcon(FastBitmapDrawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700723 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700724 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700725 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700726 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800727 if (mIcon != null) {
728 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
729 }
Tony17b7f9b2017-05-23 12:19:09 -0700730 }
731
Jon Miranda9b78e192019-08-30 18:42:01 -0700732 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700733 public void setIconVisible(boolean visible) {
734 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700735 if (!mIsIconVisible) {
736 resetIconScale();
737 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700738 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700739 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700740 }
741
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400742 protected boolean iconUpdateAnimationEnabled() {
743 return mEnableIconUpdateAnimation;
744 }
745
Tony Wickham377ed3f2016-07-20 15:21:04 -0700746 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700747 // If we had already set an icon before, disable relayout as the icon size is the
748 // same as before.
749 mDisableRelayout = mIcon != null;
750
751 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700752
753 updateIcon(icon);
754
755 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400756 if (mIcon != null
757 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400758 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000759 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800760 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700761
Sunny Goyal66dccad2018-03-19 12:00:51 -0700762 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800763 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700764
Sunny Goyal69b75642015-05-15 17:00:24 -0700765 @Override
766 public void requestLayout() {
767 if (!mDisableRelayout) {
768 super.requestLayout();
769 }
770 }
771
Sunny Goyal34b65272015-03-11 16:56:52 -0700772 /**
773 * Applies the item info if it is same as what the view is pointing to currently.
774 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800775 @Override
776 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700777 if (getTag() == info) {
778 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700779 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400780 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700781
Jon Miranda7f522a22017-07-28 11:56:47 -0700782 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700783 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700784
Sunny Goyal34b65272015-03-11 16:56:52 -0700785 if (info instanceof AppInfo) {
786 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700787 } else if (info instanceof WorkspaceItemInfo) {
788 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700789 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700790 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700791 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600792 } else if (info instanceof SearchActionItemInfo) {
793 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700794 }
Winsonc0880492015-08-21 11:16:27 -0700795
Sunny Goyal69b75642015-05-15 17:00:24 -0700796 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400797 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700798 }
799 }
800
801 /**
802 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
803 */
804 public void verifyHighRes() {
805 if (mIconLoadRequest != null) {
806 mIconLoadRequest.cancel();
807 mIconLoadRequest = null;
808 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800809 if (getTag() instanceof ItemInfoWithIcon) {
810 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700811 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800812 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700813 .updateIconInBackground(BubbleTextView.this, info);
814 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700815 }
816 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700817
Jon Miranda47170112017-03-03 14:57:14 -0800818 public int getIconSize() {
819 return mIconSize;
820 }
Adam Cohen65086992020-02-19 08:40:49 -0800821
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700822 private void updateTranslation() {
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100823 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x
824 + mTranslationForMoveFromCenterAnimation.x);
825 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y
826 + mTranslationForMoveFromCenterAnimation.y);
Adam Cohend9162062020-03-24 16:35:35 -0700827 }
828
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700829 public void setReorderBounceOffset(float x, float y) {
830 mTranslationForReorderBounce.set(x, y);
831 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700832 }
833
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700834 public void getReorderBounceOffset(PointF offset) {
835 offset.set(mTranslationForReorderBounce);
836 }
837
838 @Override
839 public void setReorderPreviewOffset(float x, float y) {
840 mTranslationForReorderPreview.set(x, y);
841 updateTranslation();
842 }
843
844 @Override
845 public void getReorderPreviewOffset(PointF offset) {
846 offset.set(mTranslationForReorderPreview);
847 }
848
849 public void setReorderBounceScale(float scale) {
850 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700851 super.setScaleX(scale);
852 super.setScaleY(scale);
853 }
854
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700855 public float getReorderBounceScale() {
856 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700857 }
858
Nick Chameyev5e8dbe72021-07-26 14:56:50 +0100859 public void setTranslationForMoveFromCenterAnimation(float x, float y) {
860 mTranslationForMoveFromCenterAnimation.set(x, y);
861 updateTranslation();
862 }
863
Adam Cohend9162062020-03-24 16:35:35 -0700864 public View getView() {
865 return this;
866 }
867
Adam Cohen65086992020-02-19 08:40:49 -0800868 @Override
869 public int getViewType() {
870 return DRAGGABLE_ICON;
871 }
872
873 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700874 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800875 DeviceProfile grid = mActivity.getDeviceProfile();
876 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
877 }
878
Adam Cohenc77bc452020-05-07 11:55:19 -0700879 private int getIconSizeForDisplay(int display) {
880 DeviceProfile grid = mActivity.getDeviceProfile();
881 switch (display) {
882 case DISPLAY_ALL_APPS:
883 return grid.allAppsIconSizePx;
Adam Cohenc77bc452020-05-07 11:55:19 -0700884 case DISPLAY_FOLDER:
Tony Wickham8ac277e2021-05-24 15:47:38 -0700885 return grid.folderChildIconSizePx;
886 case DISPLAY_WORKSPACE:
Adam Cohenc77bc452020-05-07 11:55:19 -0700887 default:
888 return grid.iconSizePx;
889 }
890 }
891
892 public void getSourceVisualDragBounds(Rect bounds) {
893 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
894 }
895
Adam Cohen65086992020-02-19 08:40:49 -0800896 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700897 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700898 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800899 setForceHideDot(true);
Sunny Goyal8b9919d2021-04-07 14:45:17 -0700900 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800901 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700902
903 private void resetIconScale() {
904 if (mIcon instanceof FastBitmapDrawable) {
Sunny Goyal572aca42021-03-24 15:21:39 -0700905 ((FastBitmapDrawable) mIcon).resetScale();
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700906 }
907 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700908
909 private void updateIcon(Drawable newIcon) {
910 if (mLayoutHorizontal) {
911 setCompoundDrawablesRelative(newIcon, null, null, null);
912 } else {
913 setCompoundDrawables(null, newIcon, null, null);
914 }
915 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800916}