blob: 60b6da67f9f48c24f4c21ba4fa76d17c38a0f05a [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;
20import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080021import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
22
Tony4043b052018-08-17 13:47:39 -070023import android.animation.Animator;
24import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080025import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070027import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070028import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070030import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070031import android.graphics.Paint;
Adam Cohend9162062020-03-24 16:35:35 -070032import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080033import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070034import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.graphics.drawable.Drawable;
Sunny Goyal66dccad2018-03-19 12:00:51 -070036import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080037import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080038import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070039import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070040import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080041import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070042import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080043import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080044import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070045
Sunny Goyal3dce5f32017-10-05 11:40:05 -070046import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070047import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080048import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080049import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070050import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080051import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070052import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080053import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080054import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080055import com.android.launcher3.icons.IconCache.IconLoadRequest;
56import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyale396abf2020-04-06 15:11:17 -070057import com.android.launcher3.model.data.AppInfo;
58import com.android.launcher3.model.data.ItemInfo;
59import com.android.launcher3.model.data.ItemInfoWithIcon;
60import com.android.launcher3.model.data.PackageItemInfo;
61import com.android.launcher3.model.data.PromiseAppInfo;
62import com.android.launcher3.model.data.WorkspaceItemInfo;
Samuel Fufa167210a2020-05-12 18:40:11 -070063import com.android.launcher3.util.SafeCloseable;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080064import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070065import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070066
Sunny Goyalc469aad2015-10-01 11:24:23 -070067import java.text.NumberFormat;
68
The Android Open Source Project31dd5032009-03-03 19:32:27 -080069/**
70 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
71 * because we want to make the bubble taller than the text and TextView's clip is
72 * too aggressive.
73 */
Jon Miranda9b78e192019-08-30 18:42:01 -070074public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Adam Cohend9162062020-03-24 16:35:35 -070075 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070076
Sunny Goyaldfaccf62015-05-11 16:30:44 -070077 private static final int DISPLAY_WORKSPACE = 0;
78 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070079 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070080
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080081 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
82
Adam Cohen1d13c0b2020-04-21 16:29:12 -070083 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
84 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
85
86 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080087
Tony Wickhamf34bee82018-12-03 18:11:39 -080088 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
89 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080090 @Override
91 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080092 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080093 }
94
95 @Override
96 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080097 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080098 bubbleTextView.invalidate();
99 }
100 };
101
Sunny Goyaled7a6932018-04-13 11:41:50 -0700102 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
103 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700104 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700105 public Float get(BubbleTextView bubbleTextView) {
106 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700107 }
108
109 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700110 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700111 bubbleTextView.setTextAlpha(alpha);
112 }
113 };
114
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800115 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700116 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800117 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700118
Samuel Fufac96fa242019-09-26 23:06:32 -0700119 private final int mDisplay;
120
Sunny Goyaled7a6932018-04-13 11:41:50 -0700121 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122
123 private final boolean mLayoutHorizontal;
124 private final int mIconSize;
125
126 @ViewDebug.ExportedProperty(category = "launcher")
127 private boolean mIsIconVisible = true;
128 @ViewDebug.ExportedProperty(category = "launcher")
129 private int mTextColor;
130 @ViewDebug.ExportedProperty(category = "launcher")
131 private float mTextAlpha = 1;
132
Tony4043b052018-08-17 13:47:39 -0700133 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800134 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800135 private DotRenderer mDotRenderer;
136 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
137 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800138 private Animator mDotScaleAnim;
139 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700140
Sunny Goyal4ffec482016-02-09 11:28:52 -0800141 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800142 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800143 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700144 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800145 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700146 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500147
Sunny Goyal34b65272015-03-11 16:56:52 -0700148 private IconLoadRequest mIconLoadRequest;
149
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800150 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700151 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800152 }
153
154 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700155 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800156 }
157
158 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
159 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800160 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700161
Adam Cohen96bb7982014-07-07 11:58:56 -0700162 TypedArray a = context.obtainStyledAttributes(attrs,
163 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800164 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700165 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700166
Samuel Fufac96fa242019-09-26 23:06:32 -0700167 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700168 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700169 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700170 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700171 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700172 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700173 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700174 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
175 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700176 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700177 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700178 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700179 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700180 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700181 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700182 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700183 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700184 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700185
Winson1f064272016-07-18 17:18:02 -0700186 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700187
188 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
189 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700190 a.recycle();
191
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800192 mLongPressHelper = new CheckLongPressHelper(this);
193
Tony Wickham8912b042018-11-29 15:28:53 -0800194 mDotParams = new DotRenderer.DrawParams();
195
Sunny Goyal66dccad2018-03-19 12:00:51 -0700196 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700197 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700198 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800199 }
200
Sunny Goyal66dccad2018-03-19 12:00:51 -0700201 @Override
202 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
203 // Disable marques when not focused to that, so that updating text does not cause relayout.
204 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
205 super.onFocusChanged(focused, direction, previouslyFocusedRect);
206 }
207
Jon Miranda52549442017-10-26 11:28:06 -0700208 /**
209 * Resets the view so it can be recycled.
210 */
211 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800212 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800213 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800214 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800215 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800216 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800217 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700218 }
219
Tony Wickhamf34bee82018-12-03 18:11:39 -0800220 private void cancelDotScaleAnim() {
221 if (mDotScaleAnim != null) {
222 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700223 }
224 }
225
Tony Wickhamf34bee82018-12-03 18:11:39 -0800226 private void animateDotScale(float... dotScales) {
227 cancelDotScaleAnim();
228 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
229 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700230 @Override
231 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800232 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700233 }
234 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800235 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700236 }
237
Sunny Goyal95899162019-03-27 16:03:06 -0700238 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
239 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700240 }
241
Adam Cohen29794c52019-06-21 12:50:30 -0700242 @Override
243 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
244 if (delegate instanceof LauncherAccessibilityDelegate) {
245 super.setAccessibilityDelegate(delegate);
246 } else {
247 // NO-OP
248 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
249 // delegate incorrectly. There are no cases when we shouldn't be using the
250 // LauncherAccessibilityDelegate for BubbleTextView.
251 }
252 }
253
Sunny Goyal95899162019-03-27 16:03:06 -0700254 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800255 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800256 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700257 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800258 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500259 }
Tony Wickham010d2552017-01-20 08:15:28 -0800260
Tony Wickhamf34bee82018-12-03 18:11:39 -0800261 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800262 }
263
Sunny Goyal508da152014-08-14 10:53:27 -0700264 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800265 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700266
Sunny Goyal95899162019-03-27 16:03:06 -0700267 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700268 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700269
270 // Verify high res immediately
271 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800272
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700273 if (info instanceof PromiseAppInfo) {
274 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
275 applyProgressLevel(promiseAppInfo.level);
276 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800277 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700278 }
279
Sunny Goyal0e08f162015-05-12 11:32:39 -0700280 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800281 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700282 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700283 super.setTag(info);
284
285 // Verify high res immediately
286 verifyHighRes();
287 }
288
Sunny Goyal179249d2017-12-19 16:49:24 -0800289 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700290 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700291 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800292
Sunny Goyalf4204382016-07-13 10:46:07 -0700293 setIcon(iconDrawable);
294 setText(info.title);
295 if (info.contentDescription != null) {
296 setContentDescription(info.isDisabled()
297 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
298 : info.contentDescription);
299 }
300 }
301
Winson Chung7501adf2015-06-02 11:24:28 -0700302 /**
303 * Overrides the default long press timeout.
304 */
Tony2ca999c2018-09-24 17:24:51 -0400305 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
306 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700307 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700308
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800309 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800310 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700311 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800312 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800313 }
Sunny Goyal508da152014-08-14 10:53:27 -0700314 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800315
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800316 @Override
317 protected int[] onCreateDrawableState(int extraSpace) {
318 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
319 if (mStayPressed) {
320 mergeDrawableStates(drawableState, STATE_PRESSED);
321 }
322 return drawableState;
323 }
324
Winson Chungb745afb2015-03-02 11:51:23 -0800325 /** Returns the icon for this view. */
326 public Drawable getIcon() {
327 return mIcon;
328 }
329
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700330 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800331 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700332 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700333 if (event.getAction() == MotionEvent.ACTION_DOWN
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700334 && (event.getY() < getPaddingTop()
335 || event.getX() < getPaddingLeft()
336 || event.getY() > getHeight() - getPaddingBottom()
337 || event.getX() > getWidth() - getPaddingRight())) {
338 return false;
339 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700340 if (isLongClickable()) {
341 super.onTouchEvent(event);
342 mLongPressHelper.onTouchEvent(event);
343 // Keep receiving the rest of the events
344 return true;
345 } else {
346 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700347 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800348 }
349
Michael Jurkaddd62e92011-02-16 17:49:14 -0800350 void setStayPressed(boolean stayPressed) {
351 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800352 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800353 }
354
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700355 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800356 public void onVisibilityAggregated(boolean isVisible) {
357 super.onVisibilityAggregated(isVisible);
358 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800359 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800360 }
361 }
362
363 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700364 public void onLauncherResume() {
365 // Reset the pressed state of icon that was locked in the press state while activity
366 // was launching
367 setStayPressed(false);
368 }
369
Sunny Goyal508da152014-08-14 10:53:27 -0700370 void clearPressedBackground() {
371 setPressed(false);
372 setStayPressed(false);
373 }
374
375 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700376 public boolean onKeyUp(int keyCode, KeyEvent event) {
377 // Unlike touch events, keypress event propagate pressed state change immediately,
378 // without waiting for onClickHandler to execute. Disable pressed state changes here
379 // to avoid flickering.
380 mIgnorePressedStateChange = true;
381 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700382 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800383 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700384 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800385 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800386
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700387 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800388 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700389 super.onDraw(canvas);
390 }
391
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800392 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700393 public void onDraw(Canvas canvas) {
394 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800395 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800396 }
397
398 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800399 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800400 * @param canvas The canvas to draw to.
401 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800402 protected void drawDotIfNecessary(Canvas canvas) {
403 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800404 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700405 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800406 final int scrollX = getScrollX();
407 final int scrollY = getScrollY();
408 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800409 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800410 canvas.translate(-scrollX, -scrollY);
411 }
412 }
413
Jon Miranda9b78e192019-08-30 18:42:01 -0700414 @Override
415 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800416 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800417 return;
418 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800419 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800420
Tony Wickhamf34bee82018-12-03 18:11:39 -0800421 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800422 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800423 } else if (hasDot()) {
424 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800425 }
426 }
427
Tony Wickhamf34bee82018-12-03 18:11:39 -0800428 private boolean hasDot() {
429 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800430 }
431
432 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700433 getIconBounds(this, outBounds, mIconSize);
434 }
435
436 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
437 int top = iconView.getPaddingTop();
438 int left = (iconView.getWidth() - iconSize) / 2;
439 int right = left + iconSize;
440 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800441 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800442 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400443
444 @Override
Winson1f064272016-07-18 17:18:02 -0700445 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
446 if (mCenterVertically) {
447 Paint.FontMetrics fm = getPaint().getFontMetrics();
448 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
449 (int) Math.ceil(fm.bottom - fm.top);
450 int height = MeasureSpec.getSize(heightMeasureSpec);
451 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
452 getPaddingBottom());
453 }
454 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
455 }
456
457 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700458 public void setTextColor(int color) {
459 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700460 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700461 }
462
Adam Cohen96bb7982014-07-07 11:58:56 -0700463 @Override
464 public void setTextColor(ColorStateList colors) {
465 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700466 if (Float.compare(mTextAlpha, 1) == 0) {
467 super.setTextColor(colors);
468 } else {
469 super.setTextColor(getModifiedColor());
470 }
Adam Cohen477828c2013-09-20 12:05:49 -0700471 }
472
Tony7308cde2017-06-27 22:38:33 -0700473 public boolean shouldTextBeVisible() {
474 // Text should be visible everywhere but the hotseat.
475 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
476 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700477 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
478 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700479 }
480
Winson Chung5f8afe62013-08-12 16:19:28 -0700481 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700482 setTextAlpha(visible ? 1 : 0);
483 }
484
485 private void setTextAlpha(float alpha) {
486 mTextAlpha = alpha;
487 super.setTextColor(getModifiedColor());
488 }
489
490 private int getModifiedColor() {
491 if (mTextAlpha == 0) {
492 // Special case to prevent text shadows in high contrast mode
493 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700494 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800495 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700496 }
497
498 /**
499 * Creates an animator to fade the text in or out.
500 * @param fadeIn Whether the text should fade in or fade out.
501 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700502 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700503 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700504 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700505 }
506
Winson Chungaffd7b42010-08-20 15:11:56 -0700507 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800508 public void cancelLongPress() {
509 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800510 mLongPressHelper.cancelLongPress();
511 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500512
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800513 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700514 if (getTag() instanceof WorkspaceItemInfo) {
515 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700516 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700517 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700518 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700519 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700520
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700521 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
522 if (preloadDrawable != null && promiseStateChanged) {
523 preloadDrawable.maybePerformFinishedAnimation();
524 }
525 }
526 }
527
528 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
529 if (getTag() instanceof ItemInfoWithIcon) {
530 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700531 if (progressLevel >= 100) {
532 setContentDescription(info.contentDescription != null
533 ? info.contentDescription : "");
534 } else if (progressLevel > 0) {
535 setContentDescription(getContext()
536 .getString(R.string.app_downloading_title, info.title,
537 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
538 } else {
539 setContentDescription(getContext()
540 .getString(R.string.app_waiting_download_title, info.title));
541 }
Winson Chungb745afb2015-03-02 11:51:23 -0800542 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700543 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800544 if (mIcon instanceof PreloadIconDrawable) {
545 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700546 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700547 } else {
Sunny Goyal14168432019-10-24 15:59:49 -0700548 preloadDrawable = newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700549 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700550 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700551 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700552 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700553 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400554 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700555 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400556 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700557
Tony Wickhamf34bee82018-12-03 18:11:39 -0800558 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800559 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800560 boolean wasDotted = mDotInfo != null;
561 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
562 boolean isDotted = mDotInfo != null;
563 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700564 if (mDisplay == DISPLAY_ALL_APPS) {
565 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
566 } else {
567 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
568 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800569 if (wasDotted || isDotted) {
570 // Animate when a dot is first added or when it is removed.
571 if (animate && (wasDotted ^ isDotted) && isShown()) {
572 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800573 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800574 cancelDotScaleAnim();
575 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800576 invalidate();
577 }
578 }
Tony Wickham305e9202018-01-23 17:46:47 -0800579 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700580 if (itemInfo.isDisabled()) {
581 setContentDescription(getContext().getString(R.string.disabled_app_label,
582 itemInfo.contentDescription));
583 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800584 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800585 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800586 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800587 } else {
588 setContentDescription(itemInfo.contentDescription);
589 }
590 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800591 }
592 }
593
Winson Chungb745afb2015-03-02 11:51:23 -0800594 /**
595 * Sets the icon for this view based on the layout direction.
596 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700597 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700598 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700599 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700600 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700601 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800602 if (mIcon != null) {
603 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
604 }
Tony17b7f9b2017-05-23 12:19:09 -0700605 }
606
Jon Miranda9b78e192019-08-30 18:42:01 -0700607 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700608 public void setIconVisible(boolean visible) {
609 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700610 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700611 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700612 }
613
614 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700615 // If we had already set an icon before, disable relayout as the icon size is the
616 // same as before.
617 mDisableRelayout = mIcon != null;
618
619 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800620 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800621 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800622 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700623 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800624 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700625 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800626 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700627
Sunny Goyal69b75642015-05-15 17:00:24 -0700628 @Override
629 public void requestLayout() {
630 if (!mDisableRelayout) {
631 super.requestLayout();
632 }
633 }
634
Sunny Goyal34b65272015-03-11 16:56:52 -0700635 /**
636 * Applies the item info if it is same as what the view is pointing to currently.
637 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800638 @Override
639 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700640 if (getTag() == info) {
641 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700642 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700643
Jon Miranda7f522a22017-07-28 11:56:47 -0700644 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700645 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700646
Sunny Goyal34b65272015-03-11 16:56:52 -0700647 if (info instanceof AppInfo) {
648 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700649 } else if (info instanceof WorkspaceItemInfo) {
650 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700651 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700652 } else if (info instanceof PackageItemInfo) {
653 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700654 }
Winsonc0880492015-08-21 11:16:27 -0700655
Sunny Goyal69b75642015-05-15 17:00:24 -0700656 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700657 }
658 }
659
660 /**
661 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
662 */
663 public void verifyHighRes() {
664 if (mIconLoadRequest != null) {
665 mIconLoadRequest.cancel();
666 mIconLoadRequest = null;
667 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800668 if (getTag() instanceof ItemInfoWithIcon) {
669 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700670 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800671 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700672 .updateIconInBackground(BubbleTextView.this, info);
673 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700674 }
675 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700676
Jon Miranda47170112017-03-03 14:57:14 -0800677 public int getIconSize() {
678 return mIconSize;
679 }
Adam Cohen65086992020-02-19 08:40:49 -0800680
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700681 private void updateTranslation() {
682 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
683 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700684 }
685
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700686 public void setReorderBounceOffset(float x, float y) {
687 mTranslationForReorderBounce.set(x, y);
688 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700689 }
690
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700691 public void getReorderBounceOffset(PointF offset) {
692 offset.set(mTranslationForReorderBounce);
693 }
694
695 @Override
696 public void setReorderPreviewOffset(float x, float y) {
697 mTranslationForReorderPreview.set(x, y);
698 updateTranslation();
699 }
700
701 @Override
702 public void getReorderPreviewOffset(PointF offset) {
703 offset.set(mTranslationForReorderPreview);
704 }
705
706 public void setReorderBounceScale(float scale) {
707 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700708 super.setScaleX(scale);
709 super.setScaleY(scale);
710 }
711
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700712 public float getReorderBounceScale() {
713 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700714 }
715
716 public View getView() {
717 return this;
718 }
719
Adam Cohen65086992020-02-19 08:40:49 -0800720 @Override
721 public int getViewType() {
722 return DRAGGABLE_ICON;
723 }
724
725 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700726 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800727 DeviceProfile grid = mActivity.getDeviceProfile();
728 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
729 }
730
Adam Cohenc77bc452020-05-07 11:55:19 -0700731 private int getIconSizeForDisplay(int display) {
732 DeviceProfile grid = mActivity.getDeviceProfile();
733 switch (display) {
734 case DISPLAY_ALL_APPS:
735 return grid.allAppsIconSizePx;
736 case DISPLAY_WORKSPACE:
737 case DISPLAY_FOLDER:
738 default:
739 return grid.iconSizePx;
740 }
741 }
742
743 public void getSourceVisualDragBounds(Rect bounds) {
744 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
745 }
746
Adam Cohen65086992020-02-19 08:40:49 -0800747 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700748 public SafeCloseable prepareDrawDragView() {
Adam Cohen65086992020-02-19 08:40:49 -0800749 if (getIcon() instanceof FastBitmapDrawable) {
750 FastBitmapDrawable icon = (FastBitmapDrawable) getIcon();
751 icon.setScale(1f);
752 }
753 setForceHideDot(true);
Samuel Fufa167210a2020-05-12 18:40:11 -0700754 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800755 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800756}