blob: 6f446ad910947fb3b3d857d27b918c0a13c611c0 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal14168432019-10-24 15:59:49 -070019import static com.android.launcher3.FastBitmapDrawable.newIcon;
Samuel Fufa314761a2020-10-14 10:15:07 -070020import static com.android.launcher3.graphics.IconShape.getShape;
Sunny Goyal14168432019-10-24 15:59:49 -070021import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080022import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
23
Tony4043b052018-08-17 13:47:39 -070024import android.animation.Animator;
25import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080026import android.animation.ObjectAnimator;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070027import android.animation.ValueAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070029import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070030import android.content.res.TypedArray;
Samuel Fufa314761a2020-10-14 10:15:07 -070031import android.graphics.BlurMaskFilter;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070033import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070034import android.graphics.Paint;
Samuel Fufa314761a2020-10-14 10:15:07 -070035import android.graphics.Path;
Adam Cohend9162062020-03-24 16:35:35 -070036import android.graphics.PointF;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070037import android.graphics.PorterDuff.Mode;
38import android.graphics.PorterDuffColorFilter;
Tony Wickham1237df02017-02-24 08:59:36 -080039import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070040import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041import android.graphics.drawable.Drawable;
Samuel Fufa314761a2020-10-14 10:15:07 -070042import android.os.Process;
Sunny Goyal66dccad2018-03-19 12:00:51 -070043import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080044import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080045import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070046import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070047import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080048import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070049import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080050import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080051import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070052
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +000053import androidx.annotation.Nullable;
Hyunyoung Song5809a402021-02-02 01:19:18 -080054import androidx.annotation.UiThread;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070055import androidx.core.graphics.ColorUtils;
56
Sunny Goyal3dce5f32017-10-05 11:40:05 -070057import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070058import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Samuel Fufa314761a2020-10-14 10:15:07 -070059import com.android.launcher3.allapps.AllAppsSectionDecorator;
60import com.android.launcher3.config.FeatureFlags;
Tony Wickhamf34bee82018-12-03 18:11:39 -080061import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080062import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070063import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080064import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070065import com.android.launcher3.graphics.IconShape;
Schneider Victor-tulias350b4622020-09-18 11:16:30 -070066import com.android.launcher3.graphics.PlaceHolderIconDrawable;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080067import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080068import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080069import com.android.launcher3.icons.IconCache.IconLoadRequest;
70import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Samuel Fufa314761a2020-10-14 10:15:07 -070071import com.android.launcher3.icons.LauncherIcons;
Sunny Goyale396abf2020-04-06 15:11:17 -070072import com.android.launcher3.model.data.AppInfo;
73import com.android.launcher3.model.data.ItemInfo;
74import com.android.launcher3.model.data.ItemInfoWithIcon;
75import com.android.launcher3.model.data.PackageItemInfo;
Samuel Fufac2820182021-01-22 11:47:25 -060076import com.android.launcher3.model.data.SearchActionItemInfo;
Sunny Goyale396abf2020-04-06 15:11:17 -070077import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070078import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080079import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070080import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070081
Sunny Goyalc469aad2015-10-01 11:24:23 -070082import java.text.NumberFormat;
83
The Android Open Source Project31dd5032009-03-03 19:32:27 -080084/**
85 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
86 * because we want to make the bubble taller than the text and TextView's clip is
87 * too aggressive.
88 */
Jon Miranda9b78e192019-08-30 18:42:01 -070089public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Samuel Fufa314761a2020-10-14 10:15:07 -070090 IconLabelDotView, DraggableView, Reorderable, AllAppsSectionDecorator.SelfDecoratingView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070091
Sunny Goyaldfaccf62015-05-11 16:30:44 -070092 private static final int DISPLAY_WORKSPACE = 0;
93 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070094 private static final int DISPLAY_FOLDER = 2;
Samuel Fufa4a53c702020-08-04 14:06:55 -070095 private static final int DISPLAY_HERO_APP = 5;
Tony Wickham794fe4f2021-01-11 14:54:23 -060096 protected static final int DISPLAY_TASKBAR = 6;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070097
Samuel Fufad6bacdc2020-08-23 21:56:07 -070098 private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed};
Samuel Fufa314761a2020-10-14 10:15:07 -070099 private static final float HIGHLIGHT_SCALE = 1.16f;
100
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800101
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700102 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
103 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
104
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700105 private static final int ICON_UPDATE_ANIMATION_DURATION = 375;
106
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700107 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -0800108
Samuel Fufa314761a2020-10-14 10:15:07 -0700109 protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
110 private final Path mHighlightPath = new Path();
111 protected int mHighlightColor = Color.TRANSPARENT;
112 private final BlurMaskFilter mHighlightShadowFilter;
113
Tony Wickhamf34bee82018-12-03 18:11:39 -0800114 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
115 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -0800116 @Override
117 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -0800118 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -0800119 }
120
121 @Override
122 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -0800123 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -0800124 bubbleTextView.invalidate();
125 }
126 };
127
Sunny Goyaled7a6932018-04-13 11:41:50 -0700128 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
129 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700130 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700131 public Float get(BubbleTextView bubbleTextView) {
132 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700133 }
134
135 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700136 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700137 bubbleTextView.setTextAlpha(alpha);
138 }
139 };
140
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800141 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700142 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800143 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700144
Tony Wickham794fe4f2021-01-11 14:54:23 -0600145 protected final int mDisplay;
Samuel Fufac96fa242019-09-26 23:06:32 -0700146
Sunny Goyaled7a6932018-04-13 11:41:50 -0700147 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700148
149 private final boolean mLayoutHorizontal;
150 private final int mIconSize;
151
152 @ViewDebug.ExportedProperty(category = "launcher")
153 private boolean mIsIconVisible = true;
154 @ViewDebug.ExportedProperty(category = "launcher")
155 private int mTextColor;
156 @ViewDebug.ExportedProperty(category = "launcher")
157 private float mTextAlpha = 1;
158
Tony4043b052018-08-17 13:47:39 -0700159 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800160 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800161 private DotRenderer mDotRenderer;
162 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
163 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800164 private Animator mDotScaleAnim;
165 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700166
Sunny Goyal4ffec482016-02-09 11:28:52 -0800167 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800168 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800169 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700170 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800171 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700172 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500173
Sunny Goyal34b65272015-03-11 16:56:52 -0700174 private IconLoadRequest mIconLoadRequest;
175
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400176 private boolean mEnableIconUpdateAnimation = false;
177
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700179 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800180 }
181
182 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700183 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800184 }
185
186 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
187 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800188 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700189
Adam Cohen96bb7982014-07-07 11:58:56 -0700190 TypedArray a = context.obtainStyledAttributes(attrs,
191 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800192 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700193 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700194
Samuel Fufac96fa242019-09-26 23:06:32 -0700195 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700196 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700197 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700198 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700199 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700200 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700201 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700202 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
203 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700204 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700205 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700206 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700207 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700208 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700209 } else if (mDisplay == DISPLAY_HERO_APP) {
210 defaultIconSize = grid.allAppsIconSizePx;
Tony Wickham794fe4f2021-01-11 14:54:23 -0600211 } else if (mDisplay == DISPLAY_TASKBAR) {
212 defaultIconSize = grid.iconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700213 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700214 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700215 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700216 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700217
Winson1f064272016-07-18 17:18:02 -0700218 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700219
220 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
221 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700222 a.recycle();
223
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800224 mLongPressHelper = new CheckLongPressHelper(this);
225
Tony Wickham8912b042018-11-29 15:28:53 -0800226 mDotParams = new DotRenderer.DrawParams();
227
Sunny Goyal66dccad2018-03-19 12:00:51 -0700228 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700229 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700230 setTextAlpha(1f);
Samuel Fufa314761a2020-10-14 10:15:07 -0700231
232 int shadowSize = context.getResources().getDimensionPixelSize(
233 R.dimen.blur_size_click_shadow);
234 mHighlightShadowFilter = new BlurMaskFilter(shadowSize, BlurMaskFilter.Blur.INNER);
235
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800236 }
237
Sunny Goyal66dccad2018-03-19 12:00:51 -0700238 @Override
239 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
240 // Disable marques when not focused to that, so that updating text does not cause relayout.
241 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
242 super.onFocusChanged(focused, direction, previouslyFocusedRect);
243 }
244
Jon Miranda52549442017-10-26 11:28:06 -0700245 /**
246 * Resets the view so it can be recycled.
247 */
248 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800249 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800250 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800251 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800252 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800253 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800254 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700255 }
256
Tony Wickhamf34bee82018-12-03 18:11:39 -0800257 private void cancelDotScaleAnim() {
258 if (mDotScaleAnim != null) {
259 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700260 }
261 }
262
Tony Wickhamf34bee82018-12-03 18:11:39 -0800263 private void animateDotScale(float... dotScales) {
264 cancelDotScaleAnim();
265 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
266 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700267 @Override
268 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800269 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700270 }
271 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800272 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700273 }
274
Hyunyoung Song5809a402021-02-02 01:19:18 -0800275 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700276 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
277 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700278 }
279
Adam Cohen29794c52019-06-21 12:50:30 -0700280 @Override
281 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
282 if (delegate instanceof LauncherAccessibilityDelegate) {
283 super.setAccessibilityDelegate(delegate);
284 } else {
285 // NO-OP
286 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
287 // delegate incorrectly. There are no cases when we shouldn't be using the
288 // LauncherAccessibilityDelegate for BubbleTextView.
289 }
290 }
291
Hyunyoung Song5809a402021-02-02 01:19:18 -0800292 @UiThread
Sunny Goyal95899162019-03-27 16:03:06 -0700293 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800294 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800295 setTag(info);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000296 applyLoadingState(promiseStateChanged);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800297 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800298 setDownloadStateContentDescription(info, info.getProgressLevel());
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800299 }
300
Hyunyoung Song5809a402021-02-02 01:19:18 -0800301 @UiThread
Sunny Goyal508da152014-08-14 10:53:27 -0700302 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800303 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700304
Sunny Goyal95899162019-03-27 16:03:06 -0700305 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700306 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700307
308 // Verify high res immediately
309 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800310
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000311 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK) != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800312 applyProgressLevel();
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700313 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800314 applyDotState(info, false /* animate */);
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800315 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal508da152014-08-14 10:53:27 -0700316 }
317
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700318 /**
319 * Apply label and tag using a generic {@link ItemInfoWithIcon}
320 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800321 @UiThread
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700322 public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800323 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700324 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700325 super.setTag(info);
326
327 // Verify high res immediately
328 verifyHighRes();
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800329
330 setDownloadStateContentDescription(info, info.getProgressLevel());
Sunny Goyal0e08f162015-05-12 11:32:39 -0700331 }
332
Samuel Fufa02be2a42020-09-23 00:45:27 -0700333 /**
Samuel Fufac2820182021-01-22 11:47:25 -0600334 * Apply label and tag using a {@link SearchActionItemInfo}
Samuel Fufa02be2a42020-09-23 00:45:27 -0700335 */
Hyunyoung Song5809a402021-02-02 01:19:18 -0800336 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600337 public void applyFromSearchActionItemInfo(SearchActionItemInfo searchActionItemInfo) {
338 applyIconAndLabel(searchActionItemInfo);
339 setTag(searchActionItemInfo);
Samuel Fufa02be2a42020-09-23 00:45:27 -0700340 }
341
Hyunyoung Song5809a402021-02-02 01:19:18 -0800342 @UiThread
Samuel Fufac2820182021-01-22 11:47:25 -0600343 protected void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700344 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700345 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800346
Sunny Goyalf4204382016-07-13 10:46:07 -0700347 setIcon(iconDrawable);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000348 applyLabel(info);
349 }
350
Hyunyoung Song5809a402021-02-02 01:19:18 -0800351 @UiThread
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000352 private void applyLabel(ItemInfoWithIcon info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700353 setText(info.title);
354 if (info.contentDescription != null) {
355 setContentDescription(info.isDisabled()
356 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
357 : info.contentDescription);
358 }
359 }
360
Winson Chung7501adf2015-06-02 11:24:28 -0700361 /**
Tony Wickhamaaa42bd2021-01-27 16:27:15 -0800362 * Directly set the icon and label.
363 */
364 @UiThread
365 public void applyIconAndLabel(Drawable icon, CharSequence label) {
366 setIcon(icon);
367 setText(label);
368 setContentDescription(label);
369 }
370
371 /**
Winson Chung7501adf2015-06-02 11:24:28 -0700372 * Overrides the default long press timeout.
373 */
Tony2ca999c2018-09-24 17:24:51 -0400374 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
375 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700376 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700377
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800378 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800379 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700380 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800381 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800382 }
Sunny Goyal508da152014-08-14 10:53:27 -0700383 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800384
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800385 @Override
386 protected int[] onCreateDrawableState(int extraSpace) {
387 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
388 if (mStayPressed) {
389 mergeDrawableStates(drawableState, STATE_PRESSED);
390 }
391 return drawableState;
392 }
393
Winson Chungb745afb2015-03-02 11:51:23 -0800394 /** Returns the icon for this view. */
395 public Drawable getIcon() {
396 return mIcon;
397 }
398
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700399 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800400 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700401 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700402 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700403 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700404 return false;
405 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700406 if (isLongClickable()) {
407 super.onTouchEvent(event);
408 mLongPressHelper.onTouchEvent(event);
409 // Keep receiving the rest of the events
410 return true;
411 } else {
412 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700413 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800414 }
415
Sunny Goyal44a3b202020-07-09 08:27:06 -0700416 /**
417 * Returns true if the touch down at the provided position be ignored
418 */
419 protected boolean shouldIgnoreTouchDown(float x, float y) {
420 return y < getPaddingTop()
421 || x < getPaddingLeft()
422 || y > getHeight() - getPaddingBottom()
423 || x > getWidth() - getPaddingRight();
424 }
425
Michael Jurkaddd62e92011-02-16 17:49:14 -0800426 void setStayPressed(boolean stayPressed) {
427 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800428 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800429 }
430
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700431 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800432 public void onVisibilityAggregated(boolean isVisible) {
433 super.onVisibilityAggregated(isVisible);
434 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800435 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800436 }
437 }
438
439 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700440 public void onLauncherResume() {
441 // Reset the pressed state of icon that was locked in the press state while activity
442 // was launching
443 setStayPressed(false);
444 }
445
Sunny Goyal508da152014-08-14 10:53:27 -0700446 void clearPressedBackground() {
447 setPressed(false);
448 setStayPressed(false);
449 }
450
451 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700452 public boolean onKeyUp(int keyCode, KeyEvent event) {
453 // Unlike touch events, keypress event propagate pressed state change immediately,
454 // without waiting for onClickHandler to execute. Disable pressed state changes here
455 // to avoid flickering.
456 mIgnorePressedStateChange = true;
457 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700458 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800459 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700460 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800461 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800462
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700463 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800464 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700465 super.onDraw(canvas);
466 }
467
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800468 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700469 public void onDraw(Canvas canvas) {
Samuel Fufa314761a2020-10-14 10:15:07 -0700470 if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) {
471 int count = canvas.save();
472 drawFocusHighlight(canvas);
473 canvas.restoreToCount(count);
474 }
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700475 super.onDraw(canvas);
Tony Wickham22a5a682020-11-02 17:04:58 -0800476 drawDotIfNecessary(canvas);
Samuel Fufa314761a2020-10-14 10:15:07 -0700477 }
478
479 protected void drawFocusHighlight(Canvas canvas) {
480 boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals(
481 ((ItemInfo) getTag()).user);
482 float insetScale = (HIGHLIGHT_SCALE - 1) / 2;
483 canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize());
484 float outlineSize = getIconSize() * HIGHLIGHT_SCALE;
485 mHighlightPath.reset();
486 mHighlightPaint.reset();
487 getIconBounds(mDotParams.iconBounds);
488 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top,
489 outlineSize / 2);
490 if (isBadged) {
491 float borderSize = outlineSize - getIconSize();
492 float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize;
493 float badgeInset = outlineSize - badgeSize;
494 getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset,
495 mDotParams.iconBounds.top + badgeInset, badgeSize / 2);
496 }
497 mHighlightPaint.setMaskFilter(mHighlightShadowFilter);
498 mHighlightPaint.setColor(mDotParams.color);
499 canvas.drawPath(mHighlightPath, mHighlightPaint);
500 mHighlightPaint.setMaskFilter(null);
501 mHighlightPaint.setColor(mHighlightColor);
502 canvas.drawPath(mHighlightPath, mHighlightPaint);
Tony Wickham1237df02017-02-24 08:59:36 -0800503 }
504
505 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800506 * Draws the notification dot in the top right corner of the icon bounds.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700507 *
Tony Wickham1237df02017-02-24 08:59:36 -0800508 * @param canvas The canvas to draw to.
509 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800510 protected void drawDotIfNecessary(Canvas canvas) {
Tony Wickham794fe4f2021-01-11 14:54:23 -0600511 if (mDisplay == DISPLAY_TASKBAR) {
512 // TODO: support notification dots in Taskbar
513 return;
514 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800515 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800516 getIconBounds(mDotParams.iconBounds);
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700517 Utilities.scaleRectAboutCenter(mDotParams.iconBounds,
518 IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800519 final int scrollX = getScrollX();
520 final int scrollY = getScrollY();
521 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800522 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800523 canvas.translate(-scrollX, -scrollY);
524 }
525 }
526
Jon Miranda9b78e192019-08-30 18:42:01 -0700527 @Override
528 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800529 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800530 return;
531 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800532 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800533
Tony Wickhamf34bee82018-12-03 18:11:39 -0800534 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800535 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800536 } else if (hasDot()) {
537 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800538 }
539 }
540
Tony Wickhamf34bee82018-12-03 18:11:39 -0800541 private boolean hasDot() {
542 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800543 }
544
545 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700546 getIconBounds(this, outBounds, mIconSize);
547 }
548
549 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
550 int top = iconView.getPaddingTop();
551 int left = (iconView.getWidth() - iconSize) / 2;
552 int right = left + iconSize;
553 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800554 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800555 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400556
557 @Override
Winson1f064272016-07-18 17:18:02 -0700558 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
559 if (mCenterVertically) {
560 Paint.FontMetrics fm = getPaint().getFontMetrics();
561 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
562 (int) Math.ceil(fm.bottom - fm.top);
563 int height = MeasureSpec.getSize(heightMeasureSpec);
564 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
565 getPaddingBottom());
566 }
567 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
568 }
569
570 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700571 public void setTextColor(int color) {
572 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700573 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700574 }
575
Adam Cohen96bb7982014-07-07 11:58:56 -0700576 @Override
577 public void setTextColor(ColorStateList colors) {
578 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700579 if (Float.compare(mTextAlpha, 1) == 0) {
580 super.setTextColor(colors);
581 } else {
582 super.setTextColor(getModifiedColor());
583 }
Adam Cohen477828c2013-09-20 12:05:49 -0700584 }
585
Tony7308cde2017-06-27 22:38:33 -0700586 public boolean shouldTextBeVisible() {
587 // Text should be visible everywhere but the hotseat.
588 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
589 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700590 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
591 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700592 }
593
Winson Chung5f8afe62013-08-12 16:19:28 -0700594 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700595 setTextAlpha(visible ? 1 : 0);
596 }
597
598 private void setTextAlpha(float alpha) {
599 mTextAlpha = alpha;
600 super.setTextColor(getModifiedColor());
601 }
602
603 private int getModifiedColor() {
604 if (mTextAlpha == 0) {
605 // Special case to prevent text shadows in high contrast mode
606 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700607 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800608 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700609 }
610
611 /**
612 * Creates an animator to fade the text in or out.
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700613 *
Tony8f402802017-06-16 17:24:54 -0700614 * @param fadeIn Whether the text should fade in or fade out.
615 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700616 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700617 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700618 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700619 }
620
Winson Chungaffd7b42010-08-20 15:11:56 -0700621 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800622 public void cancelLongPress() {
623 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800624 mLongPressHelper.cancelLongPress();
625 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500626
Samuel Fufac2820182021-01-22 11:47:25 -0600627 /**
628 * Applies the loading progress value to the progress bar.
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000629 *
630 * If this app is installing, the progress bar will be updated with the installation progress.
631 * If this app is installed and downloading incrementally, the progress bar will be updated
632 * with the total download progress.
633 */
634 public void applyLoadingState(boolean promiseStateChanged) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800635 if (getTag() instanceof ItemInfoWithIcon) {
Sunny Goyal95899162019-03-27 16:03:06 -0700636 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000637 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE)
638 != 0) {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800639 updateProgressBarUi(info.getProgressLevel() == 100);
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000640 } else if (info.hasPromiseIconUi() || (info.runtimeStatusFlags
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800641 & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
642 updateProgressBarUi(promiseStateChanged);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700643 }
644 }
645 }
646
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800647 private void updateProgressBarUi(boolean maybePerformFinishedAnimation) {
648 PreloadIconDrawable preloadDrawable = applyProgressLevel();
Schneider Victor-tulias6a5f4312021-01-12 19:30:02 +0000649 if (preloadDrawable != null && maybePerformFinishedAnimation) {
650 preloadDrawable.maybePerformFinishedAnimation();
651 }
652 }
653
654 /** Applies the given progress level to the this icon's progress bar. */
655 @Nullable
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800656 public PreloadIconDrawable applyProgressLevel() {
657 if (!(getTag() instanceof ItemInfoWithIcon)) {
658 return null;
659 }
660
661 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
662 int progressLevel = info.getProgressLevel();
663 if (progressLevel >= 100) {
664 setContentDescription(info.contentDescription != null
665 ? info.contentDescription : "");
666 } else if (progressLevel > 0) {
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800667 setDownloadStateContentDescription(info, progressLevel);
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800668 } else {
669 setContentDescription(getContext()
670 .getString(R.string.app_waiting_download_title, info.title));
671 }
672 if (mIcon != null) {
673 PreloadIconDrawable preloadIconDrawable;
674 if (mIcon instanceof PreloadIconDrawable) {
675 preloadIconDrawable = (PreloadIconDrawable) mIcon;
676 preloadIconDrawable.setLevel(progressLevel);
677 preloadIconDrawable.setIsDisabled(!info.isAppStartable());
Mario Bertschler230612f2017-09-27 17:05:21 -0700678 } else {
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800679 preloadIconDrawable = makePreloadIcon();
680 setIcon(preloadIconDrawable);
Mario Bertschler230612f2017-09-27 17:05:21 -0700681 }
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800682 return preloadIconDrawable;
Chris Wren40c5ed32014-06-24 18:24:23 -0400683 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700684 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400685 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700686
Schneider Victor-tuliasb40b98d2021-01-21 14:41:07 -0800687 /**
688 * Creates a PreloadIconDrawable with the appropriate progress level without mutating this
689 * object.
690 */
691 @Nullable
692 public PreloadIconDrawable makePreloadIcon() {
693 if (!(getTag() instanceof ItemInfoWithIcon)) {
694 return null;
695 }
696
697 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
698 int progressLevel = info.getProgressLevel();
699 final PreloadIconDrawable preloadDrawable = newPendingIcon(getContext(), info);
700
701 preloadDrawable.setLevel(progressLevel);
702 preloadDrawable.setIsDisabled(!info.isAppStartable());
703
704 return preloadDrawable;
705 }
706
Tony Wickhamf34bee82018-12-03 18:11:39 -0800707 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800708 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800709 boolean wasDotted = mDotInfo != null;
710 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
711 boolean isDotted = mDotInfo != null;
712 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700713 if (mDisplay == DISPLAY_ALL_APPS) {
714 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
715 } else {
716 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
717 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800718 if (wasDotted || isDotted) {
719 // Animate when a dot is first added or when it is removed.
720 if (animate && (wasDotted ^ isDotted) && isShown()) {
721 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800722 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800723 cancelDotScaleAnim();
724 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800725 invalidate();
726 }
727 }
Tony Wickham305e9202018-01-23 17:46:47 -0800728 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700729 if (itemInfo.isDisabled()) {
730 setContentDescription(getContext().getString(R.string.disabled_app_label,
731 itemInfo.contentDescription));
732 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800733 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800734 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800735 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800736 } else {
737 setContentDescription(itemInfo.contentDescription);
738 }
739 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800740 }
741 }
742
Schneider Victor-tulias5f7f4cb2021-01-28 13:51:23 -0800743 private void setDownloadStateContentDescription(ItemInfoWithIcon info, int progressLevel) {
744 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_SHOW_DOWNLOAD_PROGRESS_MASK)
745 != 0) {
746 String percentageString = NumberFormat.getPercentInstance()
747 .format(progressLevel * 0.01);
748 if ((info.runtimeStatusFlags & ItemInfoWithIcon.FLAG_INSTALL_SESSION_ACTIVE) != 0) {
749 setContentDescription(getContext()
750 .getString(
751 R.string.app_installing_title, info.title, percentageString));
752 } else if ((info.runtimeStatusFlags
753 & ItemInfoWithIcon.FLAG_INCREMENTAL_DOWNLOAD_ACTIVE) != 0) {
754 setContentDescription(getContext()
755 .getString(
756 R.string.app_downloading_title, info.title, percentageString));
757 }
758 }
759 }
760
Winson Chungb745afb2015-03-02 11:51:23 -0800761 /**
762 * Sets the icon for this view based on the layout direction.
763 */
Samuel Fufa4b7f38b2020-10-06 18:37:46 -0700764 protected void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700765 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700766 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700767 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700768 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800769 if (mIcon != null) {
770 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
771 }
Tony17b7f9b2017-05-23 12:19:09 -0700772 }
773
Jon Miranda9b78e192019-08-30 18:42:01 -0700774 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700775 public void setIconVisible(boolean visible) {
776 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700777 if (!mIsIconVisible) {
778 resetIconScale();
779 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700780 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700781 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700782 }
783
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400784 protected boolean iconUpdateAnimationEnabled() {
785 return mEnableIconUpdateAnimation;
786 }
787
Tony Wickham377ed3f2016-07-20 15:21:04 -0700788 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700789 // If we had already set an icon before, disable relayout as the icon size is the
790 // same as before.
791 mDisableRelayout = mIcon != null;
792
793 icon.setBounds(0, 0, mIconSize, mIconSize);
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700794
795 updateIcon(icon);
796
797 // If the current icon is a placeholder color, animate its update.
Schneider Victor-tulias3ee70182020-10-21 14:01:53 -0400798 if (mIcon != null
799 && mIcon instanceof PlaceHolderIconDrawable
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400800 && iconUpdateAnimationEnabled()) {
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700801 animateIconUpdate((PlaceHolderIconDrawable) mIcon, icon);
Winson Chungb745afb2015-03-02 11:51:23 -0800802 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700803
Sunny Goyal66dccad2018-03-19 12:00:51 -0700804 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800805 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700806
Sunny Goyal69b75642015-05-15 17:00:24 -0700807 @Override
808 public void requestLayout() {
809 if (!mDisableRelayout) {
810 super.requestLayout();
811 }
812 }
813
Sunny Goyal34b65272015-03-11 16:56:52 -0700814 /**
815 * Applies the item info if it is same as what the view is pointing to currently.
816 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800817 @Override
818 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700819 if (getTag() == info) {
820 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700821 mDisableRelayout = true;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400822 mEnableIconUpdateAnimation = true;
Winsonc0880492015-08-21 11:16:27 -0700823
Jon Miranda7f522a22017-07-28 11:56:47 -0700824 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700825 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700826
Sunny Goyal34b65272015-03-11 16:56:52 -0700827 if (info instanceof AppInfo) {
828 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700829 } else if (info instanceof WorkspaceItemInfo) {
830 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700831 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700832 } else if (info instanceof PackageItemInfo) {
Samuel Fufad6bacdc2020-08-23 21:56:07 -0700833 applyFromItemInfoWithIcon((PackageItemInfo) info);
Samuel Fufac2820182021-01-22 11:47:25 -0600834 } else if (info instanceof SearchActionItemInfo) {
835 applyFromSearchActionItemInfo((SearchActionItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700836 }
Winsonc0880492015-08-21 11:16:27 -0700837
Sunny Goyal69b75642015-05-15 17:00:24 -0700838 mDisableRelayout = false;
Schneider Victor-tulias7bbec502020-10-29 11:39:24 -0400839 mEnableIconUpdateAnimation = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700840 }
841 }
842
843 /**
844 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
845 */
846 public void verifyHighRes() {
847 if (mIconLoadRequest != null) {
848 mIconLoadRequest.cancel();
849 mIconLoadRequest = null;
850 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800851 if (getTag() instanceof ItemInfoWithIcon) {
852 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700853 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800854 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700855 .updateIconInBackground(BubbleTextView.this, info);
856 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700857 }
858 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700859
Jon Miranda47170112017-03-03 14:57:14 -0800860 public int getIconSize() {
861 return mIconSize;
862 }
Adam Cohen65086992020-02-19 08:40:49 -0800863
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700864 private void updateTranslation() {
865 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
866 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700867 }
868
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700869 public void setReorderBounceOffset(float x, float y) {
870 mTranslationForReorderBounce.set(x, y);
871 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700872 }
873
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700874 public void getReorderBounceOffset(PointF offset) {
875 offset.set(mTranslationForReorderBounce);
876 }
877
878 @Override
879 public void setReorderPreviewOffset(float x, float y) {
880 mTranslationForReorderPreview.set(x, y);
881 updateTranslation();
882 }
883
884 @Override
885 public void getReorderPreviewOffset(PointF offset) {
886 offset.set(mTranslationForReorderPreview);
887 }
888
889 public void setReorderBounceScale(float scale) {
890 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700891 super.setScaleX(scale);
892 super.setScaleY(scale);
893 }
894
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700895 public float getReorderBounceScale() {
896 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700897 }
898
899 public View getView() {
900 return this;
901 }
902
Adam Cohen65086992020-02-19 08:40:49 -0800903 @Override
904 public int getViewType() {
905 return DRAGGABLE_ICON;
906 }
907
908 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700909 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800910 DeviceProfile grid = mActivity.getDeviceProfile();
911 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
912 }
913
Adam Cohenc77bc452020-05-07 11:55:19 -0700914 private int getIconSizeForDisplay(int display) {
915 DeviceProfile grid = mActivity.getDeviceProfile();
916 switch (display) {
917 case DISPLAY_ALL_APPS:
918 return grid.allAppsIconSizePx;
919 case DISPLAY_WORKSPACE:
920 case DISPLAY_FOLDER:
921 default:
922 return grid.iconSizePx;
923 }
924 }
925
926 public void getSourceVisualDragBounds(Rect bounds) {
927 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
928 }
929
Adam Cohen65086992020-02-19 08:40:49 -0800930 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700931 public SafeCloseable prepareDrawDragView() {
Samuel Fufa314761a2020-10-14 10:15:07 -0700932 int highlightColor = mHighlightColor;
933 mHighlightColor = Color.TRANSPARENT;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700934 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800935 setForceHideDot(true);
Samuel Fufa314761a2020-10-14 10:15:07 -0700936 return () -> mHighlightColor = highlightColor;
Adam Cohen65086992020-02-19 08:40:49 -0800937 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700938
939 private void resetIconScale() {
940 if (mIcon instanceof FastBitmapDrawable) {
941 ((FastBitmapDrawable) mIcon).setScale(1f);
942 }
943 }
Schneider Victor-tulias350b4622020-09-18 11:16:30 -0700944
945 private void updateIcon(Drawable newIcon) {
946 if (mLayoutHorizontal) {
947 setCompoundDrawablesRelative(newIcon, null, null, null);
948 } else {
949 setCompoundDrawables(null, newIcon, null, null);
950 }
951 }
952
953 private static void animateIconUpdate(PlaceHolderIconDrawable oldIcon, Drawable newIcon) {
954 int placeholderColor = oldIcon.mPaint.getColor();
955 int originalAlpha = Color.alpha(placeholderColor);
956
957 ValueAnimator iconUpdateAnimation = ValueAnimator.ofInt(originalAlpha, 0);
958 iconUpdateAnimation.setDuration(ICON_UPDATE_ANIMATION_DURATION);
959 iconUpdateAnimation.addUpdateListener(valueAnimator -> {
960 int newAlpha = (int) valueAnimator.getAnimatedValue();
961 int newColor = ColorUtils.setAlphaComponent(placeholderColor, newAlpha);
962
963 newIcon.setColorFilter(new PorterDuffColorFilter(newColor, Mode.SRC_ATOP));
964 });
965 iconUpdateAnimation.addListener(new AnimatorListenerAdapter() {
966 @Override
967 public void onAnimationEnd(Animator animation) {
968 newIcon.setColorFilter(null);
969 }
970 });
971 iconUpdateAnimation.start();
972 }
Samuel Fufa314761a2020-10-14 10:15:07 -0700973
974
975 @Override
976 public void decorate(int color) {
977 mHighlightColor = color;
978 invalidate();
979 }
980
981 @Override
982 public void removeDecoration() {
983 mHighlightColor = Color.TRANSPARENT;
984 invalidate();
985 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800986}