blob: cea8cd61b07c45ea0892ca71701d66fd274948c6 [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;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070028import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070029import android.content.res.TypedArray;
Samuel Fufa314761a2020-10-14 10:15:07 -070030import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070032import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070033import android.graphics.Paint;
Samuel Fufa314761a2020-10-14 10:15:07 -070034import android.graphics.Path;
Adam Cohend9162062020-03-24 16:35:35 -070035import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080036import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070037import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080038import android.graphics.drawable.Drawable;
Samuel Fufa314761a2020-10-14 10:15:07 -070039import android.os.Process;
Sunny Goyal66dccad2018-03-19 12:00:51 -070040import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080041import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080042import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070043import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070044import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080045import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070046import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080047import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080048import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070049
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000050import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080051import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070052
Sunny Goyal3dce5f32017-10-05 11:40:05 -070053import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070054import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Samuel Fufa314761a2020-10-14 10:15:07 -070055import com.android.launcher3.allapps.AllAppsSectionDecorator;
56import com.android.launcher3.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080057import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080058import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070059import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080060import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070061import com.android.launcher3.graphics.IconShape;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070062import com.android.launcher3.graphics.PlaceHolderIconDrawable;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080063import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080064import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080065import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070066import com.android.launcher3.icons.LauncherIcons;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080067import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070068import com.android.launcher3.model.data.AppInfo;
69import com.android.launcher3.model.data.ItemInfo;
70import com.android.launcher3.model.data.ItemInfoWithIcon;
71import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060072import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070073import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070074import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080075import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070076import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070077
Sunny Goyalc469aad2015-10-01 11:24:23 -070078import java.text.NumberFormat;
79
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080/**
81 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
82 * because we want to make the bubble taller than the text and TextView's clip is
83 * too aggressive.
84 */
Jon Miranda9b78e192019-08-30 18:42:01 -070085public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Samuel Fufa314761a2020-10-14 10:15:07 -070086 IconLabelDotView, DraggableView, Reorderable, AllAppsSectionDecorator.SelfDecoratingView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070087
Sunny Goyaldfaccf62015-05-11 16:30:44 -070088 private static final int DISPLAY_WORKSPACE = 0;
89 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070090 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070091 private static final int DISPLAY_HERO_APP = 5;
Tony Wickham794fe4f2021-01-11 14:54:23 -060092 protected static final int DISPLAY_TASKBAR = 6;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070093
Samuel Fufad6bacdc2020-08-23 21:56:07 -070094 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070095 private static final float HIGHLIGHT_SCALE = 1.16f;
96
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080097
Adam Cohen1d13c0b2020-04-21 16:29:12 -070098 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
99 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
100
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700101 private static final int ICON_UPDATE_ANIMATION_DURATION = 375;
102
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700103 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800104
Samuel Fufa314761a2020-10-14 10:15:07 -0700105 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
106 private final Path mHighlightPath = new Path();
107 protected int mHighlightColor = Color.TRANSPARENT;
108 private final BlurMaskFilter mHighlightShadowFilter;
109
Tony Wickhamf34bee82018-12-03 18:11:39 -0800110 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
111 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800112 @Override
113 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800114 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800115 }
116
117 @Override
118 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800119 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800120 bubbleTextView.invalidate();
121 }
122 };
123
Sunny Goyaled7a6932018-04-13 11:41:50 -0700124 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
125 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700126 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700127 public Float get(BubbleTextView bubbleTextView) {
128 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700129 }
130
131 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700132 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700133 bubbleTextView.setTextAlpha(alpha);
134 }
135 };
136
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800137 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700138 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800139 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700140
Tony Wickham794fe4f2021-01-11 14:54:23 -0600141 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700142
Sunny Goyaled7a6932018-04-13 11:41:50 -0700143 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700144
145 private final boolean mLayoutHorizontal;
146 private final int mIconSize;
147
148 @ViewDebug.ExportedProperty(category = "launcher")
149 private boolean mIsIconVisible = true;
150 @ViewDebug.ExportedProperty(category = "launcher")
151 private int mTextColor;
152 @ViewDebug.ExportedProperty(category = "launcher")
153 private float mTextAlpha = 1;
154
Tony4043b052018-08-17 13:47:39 -0700155 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800156 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800157 private DotRenderer mDotRenderer;
158 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
159 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800160 private Animator mDotScaleAnim;
161 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700162
Sunny Goyal4ffec482016-02-09 11:28:52 -0800163 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800164 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800165 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700166 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800167 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700168 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500169
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800170 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700171
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400172 private boolean mEnableIconUpdateAnimation = false;
173
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800174 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700175 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 }
177
178 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700179 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 }
181
182 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
183 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800184 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700185
Adam Cohen96bb7982014-07-07 11:58:56 -0700186 TypedArray a = context.obtainStyledAttributes(attrs,
187 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800188 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700189 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700190
Samuel Fufac96fa242019-09-26 23:06:32 -0700191 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700192 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700193 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700194 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700195 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700196 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700197 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700198 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
199 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700200 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700201 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700202 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700203 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700204 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700205 } else if (mDisplay == DISPLAY_HERO_APP) {
206 defaultIconSize = grid.allAppsIconSizePx;
Tony Wickham794fe4f2021-01-11 14:54:23 -0600207 } else if (mDisplay == DISPLAY_TASKBAR) {
208 defaultIconSize = grid.iconSizePx;
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
Hyunyoung Song5809a402021-02-02 01:19:18 -0800271 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700272 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
273 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700274 }
275
Adam Cohen29794c52019-06-21 12:50:30 -0700276 @Override
277 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
278 if (delegate instanceof LauncherAccessibilityDelegate) {
279 super.setAccessibilityDelegate(delegate);
280 } else {
281 // NO-OP
282 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
283 // delegate incorrectly. There are no cases when we shouldn't be using the
284 // LauncherAccessibilityDelegate for BubbleTextView.
285 }
286 }
287
Hyunyoung Song5809a402021-02-02 01:19:18 -0800288 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700289 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800290 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800291 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000292 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800293 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800294 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800295 }
296
Hyunyoung Song5809a402021-02-02 01:19:18 -0800297 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700298 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800299 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700300
Sunny Goyal95899162019-03-27 16:03:06 -0700301 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700302 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700303
304 // Verify high res immediately
305 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800306
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000307 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800308 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700309 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800310 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800311 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700312 }
313
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700314 /**
315 * Apply label and tag using a generic {@link ItemInfoWithIcon}
316 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800317 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700318 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800319 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700320 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700321 super.setTag(info);
322
323 // Verify high res immediately
324 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800325
326 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700327 }
328
Samuel Fufa02be2a42020-09-23 00:45:27 -0700329 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600330 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700331 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800332 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600333 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
334 applyIconAndLabel(searchActionItemInfo);
335 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700336 }
337
Hyunyoung Song5809a402021-02-02 01:19:18 -0800338 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600339 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700340 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700341 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800342
Sunny Goyalf4204382016-07-13 10:46:07 -0700343 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000344 applyLabel(info);
345 }
346
Hyunyoung Song5809a402021-02-02 01:19:18 -0800347 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000348 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700349 setText(info.title);
350 if (info.contentDescription != null) {
351 setContentDescription(info.isDisabled()
352 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
353 : info.contentDescription);
354 }
355 }
356
Winson Chung7501adf2015-06-02 11:24:28 -0700357 /**
Tony Wickhamaaa42bd2021-01-27 16:27:15 -0800358 * Directly set the icon and label.
359 */
360 @UiThread
361 public void applyIconAndLabel(Drawable icon, CharSequence label) {
362 setIcon(icon);
363 setText(label);
364 setContentDescription(label);
365 }
366
367 /**
Winson Chung7501adf2015-06-02 11:24:28 -0700368 * Overrides the default long press timeout.
369 */
Tony2ca999c2018-09-24 17:24:51 -0400370 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
371 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700372 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700373
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800374 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800375 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700376 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800377 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800378 }
Sunny Goyal508da152014-08-14 10:53:27 -0700379 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800380
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800381 @Override
382 protected int[] onCreateDrawableState(int extraSpace) {
383 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
384 if (mStayPressed) {
385 mergeDrawableStates(drawableState, STATE_PRESSED);
386 }
387 return drawableState;
388 }
389
Winson Chungb745afb2015-03-02 11:51:23 -0800390 /** Returns the icon for this view. */
391 public Drawable getIcon() {
392 return mIcon;
393 }
394
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700395 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800396 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700397 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700398 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700399 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700400 return false;
401 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700402 if (isLongClickable()) {
403 super.onTouchEvent(event);
404 mLongPressHelper.onTouchEvent(event);
405 // Keep receiving the rest of the events
406 return true;
407 } else {
408 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700409 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800410 }
411
Sunny Goyal44a3b202020-07-09 08:27:06 -0700412 /**
413 * Returns true if the touch down at the provided position be ignored
414 */
415 protected boolean shouldIgnoreTouchDown(float x, float y) {
416 return y < getPaddingTop()
417 || x < getPaddingLeft()
418 || y > getHeight() - getPaddingBottom()
419 || x > getWidth() - getPaddingRight();
420 }
421
Michael Jurkaddd62e92011-02-16 17:49:14 -0800422 void setStayPressed(boolean stayPressed) {
423 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800424 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800425 }
426
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700427 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800428 public void onVisibilityAggregated(boolean isVisible) {
429 super.onVisibilityAggregated(isVisible);
430 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800431 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800432 }
433 }
434
435 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700436 public void onLauncherResume() {
437 // Reset the pressed state of icon that was locked in the press state while activity
438 // was launching
439 setStayPressed(false);
440 }
441
Sunny Goyal508da152014-08-14 10:53:27 -0700442 void clearPressedBackground() {
443 setPressed(false);
444 setStayPressed(false);
445 }
446
447 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700448 public boolean onKeyUp(int keyCode, KeyEvent event) {
449 // Unlike touch events, keypress event propagate pressed state change immediately,
450 // without waiting for onClickHandler to execute. Disable pressed state changes here
451 // to avoid flickering.
452 mIgnorePressedStateChange = true;
453 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700454 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800455 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700456 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800457 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800458
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700459 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800460 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700461 super.onDraw(canvas);
462 }
463
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800464 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700465 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700466 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
467 int count = canvas.save();
468 drawFocusHighlight(canvas);
469 canvas.restoreToCount(count);
470 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700471 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800472 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700473 }
474
475 protected void drawFocusHighlight(Canvas canvas) {
476 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
477 ((ItemInfo) getTag()).user);
478 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
479 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
480 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
481 mHighlightPath.reset();
482 mHighlightPaint.reset();
483 getIconBounds(mDotParams.iconBounds);
484 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
485 outlineSize / 2);
486 if (isBadged) {
487 float borderSize = outlineSize - getIconSize();
488 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
489 float badgeInset = outlineSize - badgeSize;
490 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
491 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
492 }
493 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
494 mHighlightPaint.setColor(mDotParams.color);
495 canvas.drawPath(mHighlightPath, mHighlightPaint);
496 mHighlightPaint.setMaskFilter(null);
497 mHighlightPaint.setColor(mHighlightColor);
498 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800499 }
500
501 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800502 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700503 *
Tony Wickham1237df02017-02-24 08:59:36 -0800504 * @param canvas The canvas to draw to.
505 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800506 protected void drawDotIfNecessary(Canvas canvas) {
Tony Wickham794fe4f2021-01-11 14:54:23 -0600507 if (mDisplay == DISPLAY_TASKBAR) {
508 // TODO: support notification dots in Taskbar
509 return;
510 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800511 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800512 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700513 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
514 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800515 final int scrollX = getScrollX();
516 final int scrollY = getScrollY();
517 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800518 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800519 canvas.translate(-scrollX, -scrollY);
520 }
521 }
522
Jon Miranda9b78e192019-08-30 18:42:01 -0700523 @Override
524 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800525 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800526 return;
527 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800528 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800529
Tony Wickhamf34bee82018-12-03 18:11:39 -0800530 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800531 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800532 } else if (hasDot()) {
533 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800534 }
535 }
536
Tony Wickhamf34bee82018-12-03 18:11:39 -0800537 private boolean hasDot() {
538 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800539 }
540
541 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700542 getIconBounds(this, outBounds, mIconSize);
543 }
544
545 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
546 int top = iconView.getPaddingTop();
547 int left = (iconView.getWidth() - iconSize) / 2;
548 int right = left + iconSize;
549 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800550 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800551 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400552
553 @Override
Winson1f064272016-07-18 17:18:02 -0700554 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
555 if (mCenterVertically) {
556 Paint.FontMetrics fm = getPaint().getFontMetrics();
557 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
558 (int) Math.ceil(fm.bottom - fm.top);
559 int height = MeasureSpec.getSize(heightMeasureSpec);
560 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
561 getPaddingBottom());
562 }
563 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
564 }
565
566 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700567 public void setTextColor(int color) {
568 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700569 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700570 }
571
Adam Cohen96bb7982014-07-07 11:58:56 -0700572 @Override
573 public void setTextColor(ColorStateList colors) {
574 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700575 if (Float.compare(mTextAlpha, 1) == 0) {
576 super.setTextColor(colors);
577 } else {
578 super.setTextColor(getModifiedColor());
579 }
Adam Cohen477828c2013-09-20 12:05:49 -0700580 }
581
Tony7308cde2017-06-27 22:38:33 -0700582 public boolean shouldTextBeVisible() {
583 // Text should be visible everywhere but the hotseat.
584 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
585 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700586 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
587 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700588 }
589
Winson Chung5f8afe62013-08-12 16:19:28 -0700590 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700591 setTextAlpha(visible ? 1 : 0);
592 }
593
594 private void setTextAlpha(float alpha) {
595 mTextAlpha = alpha;
596 super.setTextColor(getModifiedColor());
597 }
598
599 private int getModifiedColor() {
600 if (mTextAlpha == 0) {
601 // Special case to prevent text shadows in high contrast mode
602 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700603 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800604 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700605 }
606
607 /**
608 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700609 *
Tony8f402802017-06-16 17:24:54 -0700610 * @param fadeIn Whether the text should fade in or fade out.
611 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700612 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700613 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700614 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700615 }
616
Winson Chungaffd7b42010-08-20 15:11:56 -0700617 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800618 public void cancelLongPress() {
619 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800620 mLongPressHelper.cancelLongPress();
621 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500622
Samuel Fufac2820182021-01-22 11:47:25 -0600623 /**
624 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000625 *
626 * If this app is installing, the progress bar will be updated with the installation progress.
627 * If this app is installed and downloading incrementally, the progress bar will be updated
628 * with the total download progress.
629 */
630 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800631 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700632 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000633 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
634 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800635 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000636 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800637 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
638 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700639 }
640 }
641 }
642
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800643 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
644 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000645 if (preloadDrawable != null && maybePerformFinishedAnimation) {
646 preloadDrawable.maybePerformFinishedAnimation();
647 }
648 }
649
650 /** Applies the given progress level to the this icon's progress bar. */
651 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800652 public PreloadIconDrawable applyProgressLevel() {
653 if (!(getTag() instanceof ItemInfoWithIcon)) {
654 return null;
655 }
656
657 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
658 int progressLevel = info.getProgressLevel();
659 if (progressLevel >= 100) {
660 setContentDescription(info.contentDescription != null
661 ? info.contentDescription : "");
662 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800663 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800664 } else {
665 setContentDescription(getContext()
666 .getString(R.string.app_waiting_download_title, info.title));
667 }
668 if (mIcon != null) {
669 PreloadIconDrawable preloadIconDrawable;
670 if (mIcon instanceof PreloadIconDrawable) {
671 preloadIconDrawable = (PreloadIconDrawable) mIcon;
672 preloadIconDrawable.setLevel(progressLevel);
673 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700674 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800675 preloadIconDrawable = makePreloadIcon();
676 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700677 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800678 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400679 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700680 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400681 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700682
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800683 /**
684 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
685 * object.
686 */
687 @Nullable
688 public PreloadIconDrawable makePreloadIcon() {
689 if (!(getTag() instanceof ItemInfoWithIcon)) {
690 return null;
691 }
692
693 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
694 int progressLevel = info.getProgressLevel();
695 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
696
697 preloadDrawable.setLevel(progressLevel);
698 preloadDrawable.setIsDisabled(!info.isAppStartable());
699
700 return preloadDrawable;
701 }
702
Tony Wickhamf34bee82018-12-03 18:11:39 -0800703 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800704 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800705 boolean wasDotted = mDotInfo != null;
706 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
707 boolean isDotted = mDotInfo != null;
708 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700709 if (mDisplay == DISPLAY_ALL_APPS) {
710 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
711 } else {
712 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
713 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800714 if (wasDotted || isDotted) {
715 // Animate when a dot is first added or when it is removed.
716 if (animate && (wasDotted ^ isDotted) && isShown()) {
717 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800718 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800719 cancelDotScaleAnim();
720 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800721 invalidate();
722 }
723 }
Tony Wickham305e9202018-01-23 17:46:47 -0800724 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700725 if (itemInfo.isDisabled()) {
726 setContentDescription(getContext().getString(R.string.disabled_app_label,
727 itemInfo.contentDescription));
728 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800729 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800730 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800731 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800732 } else {
733 setContentDescription(itemInfo.contentDescription);
734 }
735 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800736 }
737 }
738
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800739 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
740 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
741 != 0) {
742 String percentageString = NumberFormat.getPercentInstance()
743 .format(progressLevel * 0.01);
744 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
745 setContentDescription(getContext()
746 .getString(
747 R.string.app_installing_title, info.title, percentageString));
748 } else if ((info.runtimeStatusFlags
749 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
750 setContentDescription(getContext()
751 .getString(
752 R.string.app_downloading_title, info.title, percentageString));
753 }
754 }
755 }
756
Winson Chungb745afb2015-03-02 11:51:23 -0800757 /**
758 * Sets the icon for this view based on the layout direction.
759 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700760 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700761 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700762 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700763 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700764 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800765 if (mIcon != null) {
766 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
767 }
Tony17b7f9b2017-05-23 12:19:09 -0700768 }
769
Jon Miranda9b78e192019-08-30 18:42:01 -0700770 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700771 public void setIconVisible(boolean visible) {
772 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700773 if (!mIsIconVisible) {
774 resetIconScale();
775 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700776 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700777 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700778 }
779
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400780 protected boolean iconUpdateAnimationEnabled() {
781 return mEnableIconUpdateAnimation;
782 }
783
Tony Wickham377ed3f2016-07-20 15:21:04 -0700784 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700785 // If we had already set an icon before, disable relayout as the icon size is the
786 // same as before.
787 mDisableRelayout = mIcon != null;
788
789 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700790
791 updateIcon(icon);
792
793 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400794 if (mIcon != null
795 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400796 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000797 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800798 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700799
Sunny Goyal66dccad2018-03-19 12:00:51 -0700800 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800801 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700802
Sunny Goyal69b75642015-05-15 17:00:24 -0700803 @Override
804 public void requestLayout() {
805 if (!mDisableRelayout) {
806 super.requestLayout();
807 }
808 }
809
Sunny Goyal34b65272015-03-11 16:56:52 -0700810 /**
811 * Applies the item info if it is same as what the view is pointing to currently.
812 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800813 @Override
814 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700815 if (getTag() == info) {
816 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700817 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400818 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700819
Jon Miranda7f522a22017-07-28 11:56:47 -0700820 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700821 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700822
Sunny Goyal34b65272015-03-11 16:56:52 -0700823 if (info instanceof AppInfo) {
824 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700825 } else if (info instanceof WorkspaceItemInfo) {
826 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700827 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700828 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700829 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600830 } else if (info instanceof SearchActionItemInfo) {
831 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700832 }
Winsonc0880492015-08-21 11:16:27 -0700833
Sunny Goyal69b75642015-05-15 17:00:24 -0700834 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400835 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700836 }
837 }
838
839 /**
840 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
841 */
842 public void verifyHighRes() {
843 if (mIconLoadRequest != null) {
844 mIconLoadRequest.cancel();
845 mIconLoadRequest = null;
846 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800847 if (getTag() instanceof ItemInfoWithIcon) {
848 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700849 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800850 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700851 .updateIconInBackground(BubbleTextView.this, info);
852 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700853 }
854 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700855
Jon Miranda47170112017-03-03 14:57:14 -0800856 public int getIconSize() {
857 return mIconSize;
858 }
Adam Cohen65086992020-02-19 08:40:49 -0800859
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700860 private void updateTranslation() {
861 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
862 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700863 }
864
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700865 public void setReorderBounceOffset(float x, float y) {
866 mTranslationForReorderBounce.set(x, y);
867 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700868 }
869
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700870 public void getReorderBounceOffset(PointF offset) {
871 offset.set(mTranslationForReorderBounce);
872 }
873
874 @Override
875 public void setReorderPreviewOffset(float x, float y) {
876 mTranslationForReorderPreview.set(x, y);
877 updateTranslation();
878 }
879
880 @Override
881 public void getReorderPreviewOffset(PointF offset) {
882 offset.set(mTranslationForReorderPreview);
883 }
884
885 public void setReorderBounceScale(float scale) {
886 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700887 super.setScaleX(scale);
888 super.setScaleY(scale);
889 }
890
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700891 public float getReorderBounceScale() {
892 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700893 }
894
895 public View getView() {
896 return this;
897 }
898
Adam Cohen65086992020-02-19 08:40:49 -0800899 @Override
900 public int getViewType() {
901 return DRAGGABLE_ICON;
902 }
903
904 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700905 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800906 DeviceProfile grid = mActivity.getDeviceProfile();
907 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
908 }
909
Adam Cohenc77bc452020-05-07 11:55:19 -0700910 private int getIconSizeForDisplay(int display) {
911 DeviceProfile grid = mActivity.getDeviceProfile();
912 switch (display) {
913 case DISPLAY_ALL_APPS:
914 return grid.allAppsIconSizePx;
915 case DISPLAY_WORKSPACE:
916 case DISPLAY_FOLDER:
917 default:
918 return grid.iconSizePx;
919 }
920 }
921
922 public void getSourceVisualDragBounds(Rect bounds) {
923 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
924 }
925
Adam Cohen65086992020-02-19 08:40:49 -0800926 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700927 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700928 int highlightColor = mHighlightColor;
929 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700930 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800931 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700932 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800933 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700934
935 private void resetIconScale() {
936 if (mIcon instanceof FastBitmapDrawable) {
937 ((FastBitmapDrawable) mIcon).setScale(1f);
938 }
939 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700940
941 private void updateIcon(Drawable newIcon) {
942 if (mLayoutHorizontal) {
943 setCompoundDrawablesRelative(newIcon, null, null, null);
944 } else {
945 setCompoundDrawables(null, newIcon, null, null);
946 }
947 }
948
Samuel Fufa314761a2020-10-14 10:15:07 -0700949 @Override
950 public void decorate(int color) {
951 mHighlightColor = color;
952 invalidate();
953 }
954
955 @Override
956 public void removeDecoration() {
957 mHighlightColor = Color.TRANSPARENT;
958 invalidate();
959 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800960}