blob: ecda501f1f655c3e6d3d331ecb8c5553bcf4dbea [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.FastBitmapDrawable.newIcon;
Samuel Fufa314761a2020-10-14 10:15:07 -070020import static com.android.launcher3.graphics.IconShape.getShape;
Sunny Goyal14168432019-10-24 15:59:49 -070021import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080022import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
23
Tony4043b052018-08-17 13:47:39 -070024import android.animation.Animator;
25import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080026import android.animation.ObjectAnimator;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070027import android.animation.ValueAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070029import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070030import android.content.res.TypedArray;
Samuel Fufa314761a2020-10-14 10:15:07 -070031import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070033import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070034import android.graphics.Paint;
Samuel Fufa314761a2020-10-14 10:15:07 -070035import android.graphics.Path;
Adam Cohend9162062020-03-24 16:35:35 -070036import android.graphics.PointF;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070037import android.graphics.PorterDuff.Mode;
38import android.graphics.PorterDuffColorFilter;
Tony Wickham1237df02017-02-24 08:59:36 -080039import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070040import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.graphics.drawable.Drawable;
Samuel Fufa314761a2020-10-14 10:15:07 -070042import android.os.Process;
Sunny Goyal66dccad2018-03-19 12:00:51 -070043import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080044import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080045import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070046import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070047import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080048import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070049import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080050import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080051import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070052
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000053import androidx.annotation.Nullable;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070054import androidx.core.graphics.ColorUtils;
55
Sunny Goyal3dce5f32017-10-05 11:40:05 -070056import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070057import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Samuel Fufa314761a2020-10-14 10:15:07 -070058import com.android.launcher3.allapps.AllAppsSectionDecorator;
59import com.android.launcher3.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080060import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080061import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070062import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080063import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070064import com.android.launcher3.graphics.IconShape;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070065import com.android.launcher3.graphics.PlaceHolderIconDrawable;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080066import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080067import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080068import com.android.launcher3.icons.IconCache.IconLoadRequest;
69import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070070import com.android.launcher3.icons.LauncherIcons;
Sunny Goyale396abf2020-04-06 15:11:17 -070071import com.android.launcher3.model.data.AppInfo;
72import com.android.launcher3.model.data.ItemInfo;
73import com.android.launcher3.model.data.ItemInfoWithIcon;
74import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060075import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070076import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070077import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080078import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070079import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070080
Sunny Goyalc469aad2015-10-01 11:24:23 -070081import java.text.NumberFormat;
82
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083/**
84 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
85 * because we want to make the bubble taller than the text and TextView's clip is
86 * too aggressive.
87 */
Jon Miranda9b78e192019-08-30 18:42:01 -070088public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Samuel Fufa314761a2020-10-14 10:15:07 -070089 IconLabelDotView, DraggableView, Reorderable, AllAppsSectionDecorator.SelfDecoratingView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070090
Sunny Goyaldfaccf62015-05-11 16:30:44 -070091 private static final int DISPLAY_WORKSPACE = 0;
92 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070093 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070094 private static final int DISPLAY_HERO_APP = 5;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070095
Samuel Fufad6bacdc2020-08-23 21:56:07 -070096 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070097 private static final float HIGHLIGHT_SCALE = 1.16f;
98
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080099
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700100 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
101 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
102
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700103 private static final int ICON_UPDATE_ANIMATION_DURATION = 375;
104
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700105 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800106
Samuel Fufa314761a2020-10-14 10:15:07 -0700107 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
108 private final Path mHighlightPath = new Path();
109 protected int mHighlightColor = Color.TRANSPARENT;
110 private final BlurMaskFilter mHighlightShadowFilter;
111
Tony Wickhamf34bee82018-12-03 18:11:39 -0800112 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
113 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800114 @Override
115 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800116 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800117 }
118
119 @Override
120 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800121 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800122 bubbleTextView.invalidate();
123 }
124 };
125
Sunny Goyaled7a6932018-04-13 11:41:50 -0700126 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
127 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700128 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700129 public Float get(BubbleTextView bubbleTextView) {
130 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700131 }
132
133 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700134 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700135 bubbleTextView.setTextAlpha(alpha);
136 }
137 };
138
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800139 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700140 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800141 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700142
Samuel Fufac96fa242019-09-26 23:06:32 -0700143 private final int mDisplay;
144
Sunny Goyaled7a6932018-04-13 11:41:50 -0700145 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700146
147 private final boolean mLayoutHorizontal;
148 private final int mIconSize;
149
150 @ViewDebug.ExportedProperty(category = "launcher")
151 private boolean mIsIconVisible = true;
152 @ViewDebug.ExportedProperty(category = "launcher")
153 private int mTextColor;
154 @ViewDebug.ExportedProperty(category = "launcher")
155 private float mTextAlpha = 1;
156
Tony4043b052018-08-17 13:47:39 -0700157 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800158 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800159 private DotRenderer mDotRenderer;
160 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
161 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800162 private Animator mDotScaleAnim;
163 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700164
Sunny Goyal4ffec482016-02-09 11:28:52 -0800165 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800166 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800167 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700168 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800169 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700170 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500171
Sunny Goyal34b65272015-03-11 16:56:52 -0700172 private IconLoadRequest mIconLoadRequest;
173
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400174 private boolean mEnableIconUpdateAnimation = false;
175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700177 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 }
179
180 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700181 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800182 }
183
184 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
185 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800186 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700187
Adam Cohen96bb7982014-07-07 11:58:56 -0700188 TypedArray a = context.obtainStyledAttributes(attrs,
189 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800190 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700191 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700192
Samuel Fufac96fa242019-09-26 23:06:32 -0700193 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700194 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700195 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700196 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700197 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700198 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700199 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700200 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
201 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700202 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700203 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700204 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700205 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700206 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700207 } else if (mDisplay == DISPLAY_HERO_APP) {
208 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700209 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700210 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700211 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700212 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700213
Winson1f064272016-07-18 17:18:02 -0700214 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700215
216 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
217 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700218 a.recycle();
219
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800220 mLongPressHelper = new CheckLongPressHelper(this);
221
Tony Wickham8912b042018-11-29 15:28:53 -0800222 mDotParams = new DotRenderer.DrawParams();
223
Sunny Goyal66dccad2018-03-19 12:00:51 -0700224 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700225 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700226 setTextAlpha(1f);
Samuel Fufa314761a2020-10-14 10:15:07 -0700227
228 int shadowSize = context.getResources().getDimensionPixelSize(
229 R.dimen.blur_size_click_shadow);
230 mHighlightShadowFilter = new BlurMaskFilter(shadowSize, BlurMaskFilter.Blur.INNER);
231
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800232 }
233
Sunny Goyal66dccad2018-03-19 12:00:51 -0700234 @Override
235 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
236 // Disable marques when not focused to that, so that updating text does not cause relayout.
237 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
238 super.onFocusChanged(focused, direction, previouslyFocusedRect);
239 }
240
Jon Miranda52549442017-10-26 11:28:06 -0700241 /**
242 * Resets the view so it can be recycled.
243 */
244 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800245 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800246 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800247 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800248 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800249 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800250 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700251 }
252
Tony Wickhamf34bee82018-12-03 18:11:39 -0800253 private void cancelDotScaleAnim() {
254 if (mDotScaleAnim != null) {
255 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700256 }
257 }
258
Tony Wickhamf34bee82018-12-03 18:11:39 -0800259 private void animateDotScale(float... dotScales) {
260 cancelDotScaleAnim();
261 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
262 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700263 @Override
264 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800265 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700266 }
267 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800268 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700269 }
270
Sunny Goyal95899162019-03-27 16:03:06 -0700271 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
272 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700273 }
274
Adam Cohen29794c52019-06-21 12:50:30 -0700275 @Override
276 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
277 if (delegate instanceof LauncherAccessibilityDelegate) {
278 super.setAccessibilityDelegate(delegate);
279 } else {
280 // NO-OP
281 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
282 // delegate incorrectly. There are no cases when we shouldn't be using the
283 // LauncherAccessibilityDelegate for BubbleTextView.
284 }
285 }
286
Sunny Goyal95899162019-03-27 16:03:06 -0700287 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800288 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800289 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000290 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800291 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800292 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800293 }
294
Sunny Goyal508da152014-08-14 10:53:27 -0700295 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800296 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700297
Sunny Goyal95899162019-03-27 16:03:06 -0700298 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700299 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700300
301 // Verify high res immediately
302 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800303
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000304 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800305 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700306 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800307 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800308 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700309 }
310
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700311 /**
312 * Apply label and tag using a generic {@link ItemInfoWithIcon}
313 */
314 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800315 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700316 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700317 super.setTag(info);
318
319 // Verify high res immediately
320 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800321
322 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700323 }
324
Samuel Fufa02be2a42020-09-23 00:45:27 -0700325 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600326 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700327 */
Samuel Fufac2820182021-01-22 11:47:25 -0600328 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
329 applyIconAndLabel(searchActionItemInfo);
330 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700331 }
332
Samuel Fufac2820182021-01-22 11:47:25 -0600333 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700334 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700335 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800336
Sunny Goyalf4204382016-07-13 10:46:07 -0700337 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000338 applyLabel(info);
339 }
340
341 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700342 setText(info.title);
343 if (info.contentDescription != null) {
344 setContentDescription(info.isDisabled()
345 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
346 : info.contentDescription);
347 }
348 }
349
Winson Chung7501adf2015-06-02 11:24:28 -0700350 /**
351 * Overrides the default long press timeout.
352 */
Tony2ca999c2018-09-24 17:24:51 -0400353 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
354 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700355 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700356
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800357 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800358 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700359 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800360 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800361 }
Sunny Goyal508da152014-08-14 10:53:27 -0700362 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800363
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800364 @Override
365 protected int[] onCreateDrawableState(int extraSpace) {
366 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
367 if (mStayPressed) {
368 mergeDrawableStates(drawableState, STATE_PRESSED);
369 }
370 return drawableState;
371 }
372
Winson Chungb745afb2015-03-02 11:51:23 -0800373 /** Returns the icon for this view. */
374 public Drawable getIcon() {
375 return mIcon;
376 }
377
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700378 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800379 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700380 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700381 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700382 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700383 return false;
384 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700385 if (isLongClickable()) {
386 super.onTouchEvent(event);
387 mLongPressHelper.onTouchEvent(event);
388 // Keep receiving the rest of the events
389 return true;
390 } else {
391 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700392 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800393 }
394
Sunny Goyal44a3b202020-07-09 08:27:06 -0700395 /**
396 * Returns true if the touch down at the provided position be ignored
397 */
398 protected boolean shouldIgnoreTouchDown(float x, float y) {
399 return y < getPaddingTop()
400 || x < getPaddingLeft()
401 || y > getHeight() - getPaddingBottom()
402 || x > getWidth() - getPaddingRight();
403 }
404
Michael Jurkaddd62e92011-02-16 17:49:14 -0800405 void setStayPressed(boolean stayPressed) {
406 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800407 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800408 }
409
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700410 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800411 public void onVisibilityAggregated(boolean isVisible) {
412 super.onVisibilityAggregated(isVisible);
413 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800414 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800415 }
416 }
417
418 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700419 public void onLauncherResume() {
420 // Reset the pressed state of icon that was locked in the press state while activity
421 // was launching
422 setStayPressed(false);
423 }
424
Sunny Goyal508da152014-08-14 10:53:27 -0700425 void clearPressedBackground() {
426 setPressed(false);
427 setStayPressed(false);
428 }
429
430 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700431 public boolean onKeyUp(int keyCode, KeyEvent event) {
432 // Unlike touch events, keypress event propagate pressed state change immediately,
433 // without waiting for onClickHandler to execute. Disable pressed state changes here
434 // to avoid flickering.
435 mIgnorePressedStateChange = true;
436 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700437 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800438 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700439 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800440 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800441
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700442 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800443 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700444 super.onDraw(canvas);
445 }
446
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800447 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700448 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700449 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
450 int count = canvas.save();
451 drawFocusHighlight(canvas);
452 canvas.restoreToCount(count);
453 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700454 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800455 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700456 }
457
458 protected void drawFocusHighlight(Canvas canvas) {
459 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
460 ((ItemInfo) getTag()).user);
461 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
462 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
463 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
464 mHighlightPath.reset();
465 mHighlightPaint.reset();
466 getIconBounds(mDotParams.iconBounds);
467 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
468 outlineSize / 2);
469 if (isBadged) {
470 float borderSize = outlineSize - getIconSize();
471 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
472 float badgeInset = outlineSize - badgeSize;
473 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
474 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
475 }
476 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
477 mHighlightPaint.setColor(mDotParams.color);
478 canvas.drawPath(mHighlightPath, mHighlightPaint);
479 mHighlightPaint.setMaskFilter(null);
480 mHighlightPaint.setColor(mHighlightColor);
481 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800482 }
483
484 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800485 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700486 *
Tony Wickham1237df02017-02-24 08:59:36 -0800487 * @param canvas The canvas to draw to.
488 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800489 protected void drawDotIfNecessary(Canvas canvas) {
490 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800491 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700492 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
493 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800494 final int scrollX = getScrollX();
495 final int scrollY = getScrollY();
496 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800497 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800498 canvas.translate(-scrollX, -scrollY);
499 }
500 }
501
Jon Miranda9b78e192019-08-30 18:42:01 -0700502 @Override
503 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800504 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800505 return;
506 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800507 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800508
Tony Wickhamf34bee82018-12-03 18:11:39 -0800509 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800510 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800511 } else if (hasDot()) {
512 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800513 }
514 }
515
Tony Wickhamf34bee82018-12-03 18:11:39 -0800516 private boolean hasDot() {
517 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800518 }
519
520 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700521 getIconBounds(this, outBounds, mIconSize);
522 }
523
524 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
525 int top = iconView.getPaddingTop();
526 int left = (iconView.getWidth() - iconSize) / 2;
527 int right = left + iconSize;
528 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800529 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800530 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400531
532 @Override
Winson1f064272016-07-18 17:18:02 -0700533 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
534 if (mCenterVertically) {
535 Paint.FontMetrics fm = getPaint().getFontMetrics();
536 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
537 (int) Math.ceil(fm.bottom - fm.top);
538 int height = MeasureSpec.getSize(heightMeasureSpec);
539 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
540 getPaddingBottom());
541 }
542 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
543 }
544
545 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700546 public void setTextColor(int color) {
547 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700548 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700549 }
550
Adam Cohen96bb7982014-07-07 11:58:56 -0700551 @Override
552 public void setTextColor(ColorStateList colors) {
553 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700554 if (Float.compare(mTextAlpha, 1) == 0) {
555 super.setTextColor(colors);
556 } else {
557 super.setTextColor(getModifiedColor());
558 }
Adam Cohen477828c2013-09-20 12:05:49 -0700559 }
560
Tony7308cde2017-06-27 22:38:33 -0700561 public boolean shouldTextBeVisible() {
562 // Text should be visible everywhere but the hotseat.
563 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
564 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700565 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
566 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700567 }
568
Winson Chung5f8afe62013-08-12 16:19:28 -0700569 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700570 setTextAlpha(visible ? 1 : 0);
571 }
572
573 private void setTextAlpha(float alpha) {
574 mTextAlpha = alpha;
575 super.setTextColor(getModifiedColor());
576 }
577
578 private int getModifiedColor() {
579 if (mTextAlpha == 0) {
580 // Special case to prevent text shadows in high contrast mode
581 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700582 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800583 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700584 }
585
586 /**
587 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700588 *
Tony8f402802017-06-16 17:24:54 -0700589 * @param fadeIn Whether the text should fade in or fade out.
590 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700591 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700592 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700593 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700594 }
595
Winson Chungaffd7b42010-08-20 15:11:56 -0700596 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800597 public void cancelLongPress() {
598 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800599 mLongPressHelper.cancelLongPress();
600 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500601
Samuel Fufac2820182021-01-22 11:47:25 -0600602 /**
603 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000604 *
605 * If this app is installing, the progress bar will be updated with the installation progress.
606 * If this app is installed and downloading incrementally, the progress bar will be updated
607 * with the total download progress.
608 */
609 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800610 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700611 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000612 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
613 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800614 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000615 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800616 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
617 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700618 }
619 }
620 }
621
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800622 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
623 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000624 if (preloadDrawable != null && maybePerformFinishedAnimation) {
625 preloadDrawable.maybePerformFinishedAnimation();
626 }
627 }
628
629 /** Applies the given progress level to the this icon's progress bar. */
630 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800631 public PreloadIconDrawable applyProgressLevel() {
632 if (!(getTag() instanceof ItemInfoWithIcon)) {
633 return null;
634 }
635
636 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
637 int progressLevel = info.getProgressLevel();
638 if (progressLevel >= 100) {
639 setContentDescription(info.contentDescription != null
640 ? info.contentDescription : "");
641 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800642 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800643 } else {
644 setContentDescription(getContext()
645 .getString(R.string.app_waiting_download_title, info.title));
646 }
647 if (mIcon != null) {
648 PreloadIconDrawable preloadIconDrawable;
649 if (mIcon instanceof PreloadIconDrawable) {
650 preloadIconDrawable = (PreloadIconDrawable) mIcon;
651 preloadIconDrawable.setLevel(progressLevel);
652 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700653 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800654 preloadIconDrawable = makePreloadIcon();
655 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700656 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800657 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400658 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700659 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400660 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700661
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800662 /**
663 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
664 * object.
665 */
666 @Nullable
667 public PreloadIconDrawable makePreloadIcon() {
668 if (!(getTag() instanceof ItemInfoWithIcon)) {
669 return null;
670 }
671
672 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
673 int progressLevel = info.getProgressLevel();
674 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
675
676 preloadDrawable.setLevel(progressLevel);
677 preloadDrawable.setIsDisabled(!info.isAppStartable());
678
679 return preloadDrawable;
680 }
681
Tony Wickhamf34bee82018-12-03 18:11:39 -0800682 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800683 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800684 boolean wasDotted = mDotInfo != null;
685 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
686 boolean isDotted = mDotInfo != null;
687 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700688 if (mDisplay == DISPLAY_ALL_APPS) {
689 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
690 } else {
691 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
692 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800693 if (wasDotted || isDotted) {
694 // Animate when a dot is first added or when it is removed.
695 if (animate && (wasDotted ^ isDotted) && isShown()) {
696 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800697 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800698 cancelDotScaleAnim();
699 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800700 invalidate();
701 }
702 }
Tony Wickham305e9202018-01-23 17:46:47 -0800703 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700704 if (itemInfo.isDisabled()) {
705 setContentDescription(getContext().getString(R.string.disabled_app_label,
706 itemInfo.contentDescription));
707 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800708 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800709 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800710 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800711 } else {
712 setContentDescription(itemInfo.contentDescription);
713 }
714 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800715 }
716 }
717
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800718 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
719 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
720 != 0) {
721 String percentageString = NumberFormat.getPercentInstance()
722 .format(progressLevel * 0.01);
723 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
724 setContentDescription(getContext()
725 .getString(
726 R.string.app_installing_title, info.title, percentageString));
727 } else if ((info.runtimeStatusFlags
728 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
729 setContentDescription(getContext()
730 .getString(
731 R.string.app_downloading_title, info.title, percentageString));
732 }
733 }
734 }
735
Winson Chungb745afb2015-03-02 11:51:23 -0800736 /**
737 * Sets the icon for this view based on the layout direction.
738 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700739 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700740 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700741 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700742 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700743 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800744 if (mIcon != null) {
745 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
746 }
Tony17b7f9b2017-05-23 12:19:09 -0700747 }
748
Jon Miranda9b78e192019-08-30 18:42:01 -0700749 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700750 public void setIconVisible(boolean visible) {
751 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700752 if (!mIsIconVisible) {
753 resetIconScale();
754 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700755 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700756 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700757 }
758
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400759 protected boolean iconUpdateAnimationEnabled() {
760 return mEnableIconUpdateAnimation;
761 }
762
Tony Wickham377ed3f2016-07-20 15:21:04 -0700763 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700764 // If we had already set an icon before, disable relayout as the icon size is the
765 // same as before.
766 mDisableRelayout = mIcon != null;
767
768 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700769
770 updateIcon(icon);
771
772 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400773 if (mIcon != null
774 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400775 && iconUpdateAnimationEnabled()) {
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700776 animateIconUpdate((PlaceHolderIconDrawable) mIcon, icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800777 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700778
Sunny Goyal66dccad2018-03-19 12:00:51 -0700779 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800780 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700781
Sunny Goyal69b75642015-05-15 17:00:24 -0700782 @Override
783 public void requestLayout() {
784 if (!mDisableRelayout) {
785 super.requestLayout();
786 }
787 }
788
Sunny Goyal34b65272015-03-11 16:56:52 -0700789 /**
790 * Applies the item info if it is same as what the view is pointing to currently.
791 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800792 @Override
793 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700794 if (getTag() == info) {
795 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700796 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400797 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700798
Jon Miranda7f522a22017-07-28 11:56:47 -0700799 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700800 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700801
Sunny Goyal34b65272015-03-11 16:56:52 -0700802 if (info instanceof AppInfo) {
803 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700804 } else if (info instanceof WorkspaceItemInfo) {
805 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700806 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700807 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700808 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600809 } else if (info instanceof SearchActionItemInfo) {
810 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700811 }
Winsonc0880492015-08-21 11:16:27 -0700812
Sunny Goyal69b75642015-05-15 17:00:24 -0700813 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400814 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700815 }
816 }
817
818 /**
819 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
820 */
821 public void verifyHighRes() {
822 if (mIconLoadRequest != null) {
823 mIconLoadRequest.cancel();
824 mIconLoadRequest = null;
825 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800826 if (getTag() instanceof ItemInfoWithIcon) {
827 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700828 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800829 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700830 .updateIconInBackground(BubbleTextView.this, info);
831 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700832 }
833 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700834
Jon Miranda47170112017-03-03 14:57:14 -0800835 public int getIconSize() {
836 return mIconSize;
837 }
Adam Cohen65086992020-02-19 08:40:49 -0800838
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700839 private void updateTranslation() {
840 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
841 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700842 }
843
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700844 public void setReorderBounceOffset(float x, float y) {
845 mTranslationForReorderBounce.set(x, y);
846 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700847 }
848
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700849 public void getReorderBounceOffset(PointF offset) {
850 offset.set(mTranslationForReorderBounce);
851 }
852
853 @Override
854 public void setReorderPreviewOffset(float x, float y) {
855 mTranslationForReorderPreview.set(x, y);
856 updateTranslation();
857 }
858
859 @Override
860 public void getReorderPreviewOffset(PointF offset) {
861 offset.set(mTranslationForReorderPreview);
862 }
863
864 public void setReorderBounceScale(float scale) {
865 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700866 super.setScaleX(scale);
867 super.setScaleY(scale);
868 }
869
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700870 public float getReorderBounceScale() {
871 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700872 }
873
874 public View getView() {
875 return this;
876 }
877
Adam Cohen65086992020-02-19 08:40:49 -0800878 @Override
879 public int getViewType() {
880 return DRAGGABLE_ICON;
881 }
882
883 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700884 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800885 DeviceProfile grid = mActivity.getDeviceProfile();
886 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
887 }
888
Adam Cohenc77bc452020-05-07 11:55:19 -0700889 private int getIconSizeForDisplay(int display) {
890 DeviceProfile grid = mActivity.getDeviceProfile();
891 switch (display) {
892 case DISPLAY_ALL_APPS:
893 return grid.allAppsIconSizePx;
894 case DISPLAY_WORKSPACE:
895 case DISPLAY_FOLDER:
896 default:
897 return grid.iconSizePx;
898 }
899 }
900
901 public void getSourceVisualDragBounds(Rect bounds) {
902 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
903 }
904
Adam Cohen65086992020-02-19 08:40:49 -0800905 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700906 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700907 int highlightColor = mHighlightColor;
908 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700909 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800910 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700911 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800912 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700913
914 private void resetIconScale() {
915 if (mIcon instanceof FastBitmapDrawable) {
916 ((FastBitmapDrawable) mIcon).setScale(1f);
917 }
918 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700919
920 private void updateIcon(Drawable newIcon) {
921 if (mLayoutHorizontal) {
922 setCompoundDrawablesRelative(newIcon, null, null, null);
923 } else {
924 setCompoundDrawables(null, newIcon, null, null);
925 }
926 }
927
928 private static void animateIconUpdate(PlaceHolderIconDrawable oldIcon, Drawable newIcon) {
929 int placeholderColor = oldIcon.mPaint.getColor();
930 int originalAlpha = Color.alpha(placeholderColor);
931
932 ValueAnimator iconUpdateAnimation = ValueAnimator.ofInt(originalAlpha, 0);
933 iconUpdateAnimation.setDuration(ICON_UPDATE_ANIMATION_DURATION);
934 iconUpdateAnimation.addUpdateListener(valueAnimator -> {
935 int newAlpha = (int) valueAnimator.getAnimatedValue();
936 int newColor = ColorUtils.setAlphaComponent(placeholderColor, newAlpha);
937
938 newIcon.setColorFilter(new PorterDuffColorFilter(newColor, Mode.SRC_ATOP));
939 });
940 iconUpdateAnimation.addListener(new AnimatorListenerAdapter() {
941 @Override
942 public void onAnimationEnd(Animator animation) {
943 newIcon.setColorFilter(null);
944 }
945 });
946 iconUpdateAnimation.start();
947 }
Samuel Fufa314761a2020-10-14 10:15:07 -0700948
949
950 @Override
951 public void decorate(int color) {
952 mHighlightColor = color;
953 invalidate();
954 }
955
956 @Override
957 public void removeDecoration() {
958 mHighlightColor = Color.TRANSPARENT;
959 invalidate();
960 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800961}