blob: e0be6de7935bdb3e306de13678f4627e30c5c253 [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.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080056import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080057import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070058import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080059import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070060import com.android.launcher3.graphics.IconShape;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070061import com.android.launcher3.graphics.PlaceHolderIconDrawable;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080062import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080063import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080064import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070065import com.android.launcher3.icons.LauncherIcons;
Sunny Goyal79e52fc2021-02-03 10:22:28 -080066import com.android.launcher3.icons.cache.HandlerRunnable;
Sunny Goyale396abf2020-04-06 15:11:17 -070067import com.android.launcher3.model.data.AppInfo;
68import com.android.launcher3.model.data.ItemInfo;
69import com.android.launcher3.model.data.ItemInfoWithIcon;
70import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060071import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070072import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070073import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080074import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070075import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070076
Sunny Goyalc469aad2015-10-01 11:24:23 -070077import java.text.NumberFormat;
78
The Android Open Source Project31dd5032009-03-03 19:32:27 -080079/**
80 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
81 * because we want to make the bubble taller than the text and TextView's clip is
82 * too aggressive.
83 */
Jon Miranda9b78e192019-08-30 18:42:01 -070084public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Hyunyoung Songdb9a53d2021-02-17 00:35:10 -080085 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070086
Sunny Goyaldfaccf62015-05-11 16:30:44 -070087 private static final int DISPLAY_WORKSPACE = 0;
88 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070089 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070090 private static final int DISPLAY_HERO_APP = 5;
Tony Wickham794fe4f2021-01-11 14:54:23 -060091 protected static final int DISPLAY_TASKBAR = 6;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070092
Samuel Fufad6bacdc2020-08-23 21:56:07 -070093 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070094 private static final float HIGHLIGHT_SCALE = 1.16f;
95
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080096
Adam Cohen1d13c0b2020-04-21 16:29:12 -070097 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
98 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
99
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700100 private static final int ICON_UPDATE_ANIMATION_DURATION = 375;
101
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700102 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800103
Samuel Fufa314761a2020-10-14 10:15:07 -0700104 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
105 private final Path mHighlightPath = new Path();
106 protected int mHighlightColor = Color.TRANSPARENT;
107 private final BlurMaskFilter mHighlightShadowFilter;
108
Tony Wickhamf34bee82018-12-03 18:11:39 -0800109 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
110 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800111 @Override
112 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800113 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800114 }
115
116 @Override
117 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800118 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800119 bubbleTextView.invalidate();
120 }
121 };
122
Sunny Goyaled7a6932018-04-13 11:41:50 -0700123 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
124 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700125 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700126 public Float get(BubbleTextView bubbleTextView) {
127 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700128 }
129
130 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700131 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700132 bubbleTextView.setTextAlpha(alpha);
133 }
134 };
135
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800136 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700137 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800138 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700139
Tony Wickham794fe4f2021-01-11 14:54:23 -0600140 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700141
Sunny Goyaled7a6932018-04-13 11:41:50 -0700142 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700143
144 private final boolean mLayoutHorizontal;
145 private final int mIconSize;
146
147 @ViewDebug.ExportedProperty(category = "launcher")
148 private boolean mIsIconVisible = true;
149 @ViewDebug.ExportedProperty(category = "launcher")
150 private int mTextColor;
151 @ViewDebug.ExportedProperty(category = "launcher")
152 private float mTextAlpha = 1;
153
Tony4043b052018-08-17 13:47:39 -0700154 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800155 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800156 private DotRenderer mDotRenderer;
157 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
158 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800159 private Animator mDotScaleAnim;
160 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700161
Sunny Goyal4ffec482016-02-09 11:28:52 -0800162 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800163 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800164 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700165 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800166 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700167 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500168
Sunny Goyal79e52fc2021-02-03 10:22:28 -0800169 private HandlerRunnable mIconLoadRequest;
Sunny Goyal34b65272015-03-11 16:56:52 -0700170
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400171 private boolean mEnableIconUpdateAnimation = false;
172
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800173 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700174 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800175 }
176
177 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700178 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800179 }
180
181 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
182 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800183 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700184
Adam Cohen96bb7982014-07-07 11:58:56 -0700185 TypedArray a = context.obtainStyledAttributes(attrs,
186 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800187 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700188 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700189
Samuel Fufac96fa242019-09-26 23:06:32 -0700190 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700191 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700192 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700193 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700194 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700195 defaultIconSize = grid.iconSizePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500196 setCenterVertically(grid.isScalableGrid);
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);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800231 }
232
Sunny Goyal66dccad2018-03-19 12:00:51 -0700233 @Override
234 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
235 // Disable marques when not focused to that, so that updating text does not cause relayout.
236 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
237 super.onFocusChanged(focused, direction, previouslyFocusedRect);
238 }
239
Jon Miranda52549442017-10-26 11:28:06 -0700240 /**
241 * Resets the view so it can be recycled.
242 */
243 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800244 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800245 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800246 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800247 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800248 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800249 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700250 }
251
Tony Wickhamf34bee82018-12-03 18:11:39 -0800252 private void cancelDotScaleAnim() {
253 if (mDotScaleAnim != null) {
254 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700255 }
256 }
257
Tony Wickhamf34bee82018-12-03 18:11:39 -0800258 private void animateDotScale(float... dotScales) {
259 cancelDotScaleAnim();
260 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
261 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700262 @Override
263 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800264 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700265 }
266 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800267 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700268 }
269
Hyunyoung Song5809a402021-02-02 01:19:18 -0800270 @UiThread
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
Hyunyoung Song5809a402021-02-02 01:19:18 -0800287 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700288 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800289 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800290 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000291 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800292 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800293 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800294 }
295
Hyunyoung Song5809a402021-02-02 01:19:18 -0800296 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700297 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800298 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700299
Sunny Goyal95899162019-03-27 16:03:06 -0700300 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700301 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700302
303 // Verify high res immediately
304 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800305
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000306 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800307 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700308 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800309 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800310 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700311 }
312
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700313 /**
314 * Apply label and tag using a generic {@link ItemInfoWithIcon}
315 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800316 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700317 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800318 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700319 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700320 super.setTag(info);
321
322 // Verify high res immediately
323 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800324
325 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700326 }
327
Samuel Fufa02be2a42020-09-23 00:45:27 -0700328 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600329 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700330 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800331 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600332 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
333 applyIconAndLabel(searchActionItemInfo);
334 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700335 }
336
Hyunyoung Song5809a402021-02-02 01:19:18 -0800337 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600338 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700339 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700340 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800341
Sunny Goyalf4204382016-07-13 10:46:07 -0700342 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000343 applyLabel(info);
344 }
345
Hyunyoung Song5809a402021-02-02 01:19:18 -0800346 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000347 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700348 setText(info.title);
349 if (info.contentDescription != null) {
350 setContentDescription(info.isDisabled()
351 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
352 : info.contentDescription);
353 }
354 }
355
Winson Chung7501adf2015-06-02 11:24:28 -0700356 /**
Tony Wickhamaaa42bd2021-01-27 16:27:15 -0800357 * Directly set the icon and label.
358 */
359 @UiThread
360 public void applyIconAndLabel(Drawable icon, CharSequence label) {
361 setIcon(icon);
362 setText(label);
363 setContentDescription(label);
364 }
365
366 /**
Winson Chung7501adf2015-06-02 11:24:28 -0700367 * Overrides the default long press timeout.
368 */
Tony2ca999c2018-09-24 17:24:51 -0400369 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
370 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700371 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700372
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800373 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800374 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700375 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800376 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800377 }
Sunny Goyal508da152014-08-14 10:53:27 -0700378 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800379
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800380 @Override
381 protected int[] onCreateDrawableState(int extraSpace) {
382 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
383 if (mStayPressed) {
384 mergeDrawableStates(drawableState, STATE_PRESSED);
385 }
386 return drawableState;
387 }
388
Winson Chungb745afb2015-03-02 11:51:23 -0800389 /** Returns the icon for this view. */
390 public Drawable getIcon() {
391 return mIcon;
392 }
393
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700394 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800395 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700396 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700397 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700398 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700399 return false;
400 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700401 if (isLongClickable()) {
402 super.onTouchEvent(event);
403 mLongPressHelper.onTouchEvent(event);
404 // Keep receiving the rest of the events
405 return true;
406 } else {
407 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700408 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800409 }
410
Sunny Goyal44a3b202020-07-09 08:27:06 -0700411 /**
412 * Returns true if the touch down at the provided position be ignored
413 */
414 protected boolean shouldIgnoreTouchDown(float x, float y) {
415 return y < getPaddingTop()
416 || x < getPaddingLeft()
417 || y > getHeight() - getPaddingBottom()
418 || x > getWidth() - getPaddingRight();
419 }
420
Michael Jurkaddd62e92011-02-16 17:49:14 -0800421 void setStayPressed(boolean stayPressed) {
422 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800423 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800424 }
425
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700426 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800427 public void onVisibilityAggregated(boolean isVisible) {
428 super.onVisibilityAggregated(isVisible);
429 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800430 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800431 }
432 }
433
434 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700435 public void onLauncherResume() {
436 // Reset the pressed state of icon that was locked in the press state while activity
437 // was launching
438 setStayPressed(false);
439 }
440
Sunny Goyal508da152014-08-14 10:53:27 -0700441 void clearPressedBackground() {
442 setPressed(false);
443 setStayPressed(false);
444 }
445
446 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700447 public boolean onKeyUp(int keyCode, KeyEvent event) {
448 // Unlike touch events, keypress event propagate pressed state change immediately,
449 // without waiting for onClickHandler to execute. Disable pressed state changes here
450 // to avoid flickering.
451 mIgnorePressedStateChange = true;
452 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700453 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800454 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700455 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800456 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800457
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700458 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800459 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700460 super.onDraw(canvas);
461 }
462
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800463 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700464 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700465 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
466 int count = canvas.save();
467 drawFocusHighlight(canvas);
468 canvas.restoreToCount(count);
469 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700470 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800471 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700472 }
473
474 protected void drawFocusHighlight(Canvas canvas) {
475 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
476 ((ItemInfo) getTag()).user);
477 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
478 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
479 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
480 mHighlightPath.reset();
481 mHighlightPaint.reset();
482 getIconBounds(mDotParams.iconBounds);
483 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
484 outlineSize / 2);
485 if (isBadged) {
486 float borderSize = outlineSize - getIconSize();
487 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
488 float badgeInset = outlineSize - badgeSize;
489 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
490 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
491 }
492 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
493 mHighlightPaint.setColor(mDotParams.color);
494 canvas.drawPath(mHighlightPath, mHighlightPaint);
495 mHighlightPaint.setMaskFilter(null);
496 mHighlightPaint.setColor(mHighlightColor);
497 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800498 }
499
500 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800501 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700502 *
Tony Wickham1237df02017-02-24 08:59:36 -0800503 * @param canvas The canvas to draw to.
504 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800505 protected void drawDotIfNecessary(Canvas canvas) {
Tony Wickham7ba547c2021-02-02 17:12:08 -0800506 if (mActivity instanceof Launcher && ((Launcher) mActivity).isViewInTaskbar(this)) {
Tony Wickham794fe4f2021-01-11 14:54:23 -0600507 // TODO: support notification dots in Taskbar
508 return;
509 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800510 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800511 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700512 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
513 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800514 final int scrollX = getScrollX();
515 final int scrollY = getScrollY();
516 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800517 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800518 canvas.translate(-scrollX, -scrollY);
519 }
520 }
521
Jon Miranda9b78e192019-08-30 18:42:01 -0700522 @Override
523 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800524 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800525 return;
526 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800527 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800528
Tony Wickhamf34bee82018-12-03 18:11:39 -0800529 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800530 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800531 } else if (hasDot()) {
532 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800533 }
534 }
535
Tony Wickhamf34bee82018-12-03 18:11:39 -0800536 private boolean hasDot() {
537 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800538 }
539
540 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700541 getIconBounds(this, outBounds, mIconSize);
542 }
543
544 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
545 int top = iconView.getPaddingTop();
546 int left = (iconView.getWidth() - iconSize) / 2;
547 int right = left + iconSize;
548 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800549 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800550 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400551
Jon Miranda228877d2021-02-09 11:05:00 -0500552
553 /**
554 * Sets whether to vertically center the content.
555 */
556 public void setCenterVertically(boolean centerVertically) {
557 mCenterVertically = centerVertically;
558 }
559
Joe Onorato9c1289c2009-08-17 11:03:03 -0400560 @Override
Winson1f064272016-07-18 17:18:02 -0700561 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
562 if (mCenterVertically) {
563 Paint.FontMetrics fm = getPaint().getFontMetrics();
564 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
565 (int) Math.ceil(fm.bottom - fm.top);
566 int height = MeasureSpec.getSize(heightMeasureSpec);
567 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
568 getPaddingBottom());
569 }
570 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
571 }
572
573 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700574 public void setTextColor(int color) {
575 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700576 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700577 }
578
Adam Cohen96bb7982014-07-07 11:58:56 -0700579 @Override
580 public void setTextColor(ColorStateList colors) {
581 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700582 if (Float.compare(mTextAlpha, 1) == 0) {
583 super.setTextColor(colors);
584 } else {
585 super.setTextColor(getModifiedColor());
586 }
Adam Cohen477828c2013-09-20 12:05:49 -0700587 }
588
Tony7308cde2017-06-27 22:38:33 -0700589 public boolean shouldTextBeVisible() {
590 // Text should be visible everywhere but the hotseat.
591 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
592 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700593 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
594 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700595 }
596
Winson Chung5f8afe62013-08-12 16:19:28 -0700597 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700598 setTextAlpha(visible ? 1 : 0);
599 }
600
601 private void setTextAlpha(float alpha) {
602 mTextAlpha = alpha;
603 super.setTextColor(getModifiedColor());
604 }
605
606 private int getModifiedColor() {
607 if (mTextAlpha == 0) {
608 // Special case to prevent text shadows in high contrast mode
609 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700610 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800611 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700612 }
613
614 /**
615 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700616 *
Tony8f402802017-06-16 17:24:54 -0700617 * @param fadeIn Whether the text should fade in or fade out.
618 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700619 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700620 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700621 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700622 }
623
Winson Chungaffd7b42010-08-20 15:11:56 -0700624 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800625 public void cancelLongPress() {
626 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800627 mLongPressHelper.cancelLongPress();
628 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500629
Samuel Fufac2820182021-01-22 11:47:25 -0600630 /**
631 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000632 *
633 * If this app is installing, the progress bar will be updated with the installation progress.
634 * If this app is installed and downloading incrementally, the progress bar will be updated
635 * with the total download progress.
636 */
637 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800638 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700639 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000640 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
641 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800642 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000643 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800644 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
645 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700646 }
647 }
648 }
649
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800650 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
651 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000652 if (preloadDrawable != null && maybePerformFinishedAnimation) {
653 preloadDrawable.maybePerformFinishedAnimation();
654 }
655 }
656
657 /** Applies the given progress level to the this icon's progress bar. */
658 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800659 public PreloadIconDrawable applyProgressLevel() {
660 if (!(getTag() instanceof ItemInfoWithIcon)) {
661 return null;
662 }
663
664 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
665 int progressLevel = info.getProgressLevel();
666 if (progressLevel >= 100) {
667 setContentDescription(info.contentDescription != null
668 ? info.contentDescription : "");
669 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800670 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800671 } else {
672 setContentDescription(getContext()
673 .getString(R.string.app_waiting_download_title, info.title));
674 }
675 if (mIcon != null) {
676 PreloadIconDrawable preloadIconDrawable;
677 if (mIcon instanceof PreloadIconDrawable) {
678 preloadIconDrawable = (PreloadIconDrawable) mIcon;
679 preloadIconDrawable.setLevel(progressLevel);
680 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700681 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800682 preloadIconDrawable = makePreloadIcon();
683 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700684 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800685 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400686 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700687 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400688 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700689
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800690 /**
691 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
692 * object.
693 */
694 @Nullable
695 public PreloadIconDrawable makePreloadIcon() {
696 if (!(getTag() instanceof ItemInfoWithIcon)) {
697 return null;
698 }
699
700 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
701 int progressLevel = info.getProgressLevel();
702 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
703
704 preloadDrawable.setLevel(progressLevel);
705 preloadDrawable.setIsDisabled(!info.isAppStartable());
706
707 return preloadDrawable;
708 }
709
Tony Wickhamf34bee82018-12-03 18:11:39 -0800710 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800711 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800712 boolean wasDotted = mDotInfo != null;
713 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
714 boolean isDotted = mDotInfo != null;
715 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700716 if (mDisplay == DISPLAY_ALL_APPS) {
717 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
718 } else {
719 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
720 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800721 if (wasDotted || isDotted) {
722 // Animate when a dot is first added or when it is removed.
723 if (animate && (wasDotted ^ isDotted) && isShown()) {
724 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800725 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800726 cancelDotScaleAnim();
727 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800728 invalidate();
729 }
730 }
Tony Wickham305e9202018-01-23 17:46:47 -0800731 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700732 if (itemInfo.isDisabled()) {
733 setContentDescription(getContext().getString(R.string.disabled_app_label,
734 itemInfo.contentDescription));
735 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800736 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800737 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800738 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800739 } else {
740 setContentDescription(itemInfo.contentDescription);
741 }
742 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800743 }
744 }
745
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800746 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
747 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
748 != 0) {
749 String percentageString = NumberFormat.getPercentInstance()
750 .format(progressLevel * 0.01);
751 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
752 setContentDescription(getContext()
753 .getString(
754 R.string.app_installing_title, info.title, percentageString));
755 } else if ((info.runtimeStatusFlags
756 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
757 setContentDescription(getContext()
758 .getString(
759 R.string.app_downloading_title, info.title, percentageString));
760 }
761 }
762 }
763
Winson Chungb745afb2015-03-02 11:51:23 -0800764 /**
765 * Sets the icon for this view based on the layout direction.
766 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700767 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700768 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700769 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700770 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700771 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800772 if (mIcon != null) {
773 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
774 }
Tony17b7f9b2017-05-23 12:19:09 -0700775 }
776
Jon Miranda9b78e192019-08-30 18:42:01 -0700777 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700778 public void setIconVisible(boolean visible) {
779 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700780 if (!mIsIconVisible) {
781 resetIconScale();
782 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700783 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700784 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700785 }
786
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400787 protected boolean iconUpdateAnimationEnabled() {
788 return mEnableIconUpdateAnimation;
789 }
790
Tony Wickham377ed3f2016-07-20 15:21:04 -0700791 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700792 // If we had already set an icon before, disable relayout as the icon size is the
793 // same as before.
794 mDisableRelayout = mIcon != null;
795
796 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700797
798 updateIcon(icon);
799
800 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400801 if (mIcon != null
802 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400803 && iconUpdateAnimationEnabled()) {
Steven Nge92bc552021-02-10 17:10:15 +0000804 ((PlaceHolderIconDrawable) mIcon).animateIconUpdate(icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800805 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700806
Sunny Goyal66dccad2018-03-19 12:00:51 -0700807 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800808 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700809
Sunny Goyal69b75642015-05-15 17:00:24 -0700810 @Override
811 public void requestLayout() {
812 if (!mDisableRelayout) {
813 super.requestLayout();
814 }
815 }
816
Sunny Goyal34b65272015-03-11 16:56:52 -0700817 /**
818 * Applies the item info if it is same as what the view is pointing to currently.
819 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800820 @Override
821 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700822 if (getTag() == info) {
823 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700824 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400825 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700826
Jon Miranda7f522a22017-07-28 11:56:47 -0700827 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700828 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700829
Sunny Goyal34b65272015-03-11 16:56:52 -0700830 if (info instanceof AppInfo) {
831 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700832 } else if (info instanceof WorkspaceItemInfo) {
833 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700834 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700835 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700836 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600837 } else if (info instanceof SearchActionItemInfo) {
838 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700839 }
Winsonc0880492015-08-21 11:16:27 -0700840
Sunny Goyal69b75642015-05-15 17:00:24 -0700841 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400842 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700843 }
844 }
845
846 /**
847 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
848 */
849 public void verifyHighRes() {
850 if (mIconLoadRequest != null) {
851 mIconLoadRequest.cancel();
852 mIconLoadRequest = null;
853 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800854 if (getTag() instanceof ItemInfoWithIcon) {
855 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700856 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800857 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700858 .updateIconInBackground(BubbleTextView.this, info);
859 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700860 }
861 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700862
Jon Miranda47170112017-03-03 14:57:14 -0800863 public int getIconSize() {
864 return mIconSize;
865 }
Adam Cohen65086992020-02-19 08:40:49 -0800866
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700867 private void updateTranslation() {
868 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
869 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700870 }
871
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700872 public void setReorderBounceOffset(float x, float y) {
873 mTranslationForReorderBounce.set(x, y);
874 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700875 }
876
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700877 public void getReorderBounceOffset(PointF offset) {
878 offset.set(mTranslationForReorderBounce);
879 }
880
881 @Override
882 public void setReorderPreviewOffset(float x, float y) {
883 mTranslationForReorderPreview.set(x, y);
884 updateTranslation();
885 }
886
887 @Override
888 public void getReorderPreviewOffset(PointF offset) {
889 offset.set(mTranslationForReorderPreview);
890 }
891
892 public void setReorderBounceScale(float scale) {
893 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700894 super.setScaleX(scale);
895 super.setScaleY(scale);
896 }
897
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700898 public float getReorderBounceScale() {
899 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700900 }
901
902 public View getView() {
903 return this;
904 }
905
Adam Cohen65086992020-02-19 08:40:49 -0800906 @Override
907 public int getViewType() {
908 return DRAGGABLE_ICON;
909 }
910
911 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700912 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800913 DeviceProfile grid = mActivity.getDeviceProfile();
914 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
915 }
916
Adam Cohenc77bc452020-05-07 11:55:19 -0700917 private int getIconSizeForDisplay(int display) {
918 DeviceProfile grid = mActivity.getDeviceProfile();
919 switch (display) {
920 case DISPLAY_ALL_APPS:
921 return grid.allAppsIconSizePx;
922 case DISPLAY_WORKSPACE:
923 case DISPLAY_FOLDER:
924 default:
925 return grid.iconSizePx;
926 }
927 }
928
929 public void getSourceVisualDragBounds(Rect bounds) {
930 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
931 }
932
Adam Cohen65086992020-02-19 08:40:49 -0800933 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700934 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700935 int highlightColor = mHighlightColor;
936 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700937 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800938 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700939 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800940 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700941
942 private void resetIconScale() {
943 if (mIcon instanceof FastBitmapDrawable) {
944 ((FastBitmapDrawable) mIcon).setScale(1f);
945 }
946 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700947
948 private void updateIcon(Drawable newIcon) {
949 if (mLayoutHorizontal) {
950 setCompoundDrawablesRelative(newIcon, null, null, null);
951 } else {
952 setCompoundDrawables(null, newIcon, null, null);
953 }
954 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800955}