blob: 79ed2b8c45282c64d31d4a82714552a6c4cc9868 [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;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080063import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070064import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070065
Sunny Goyalc469aad2015-10-01 11:24:23 -070066import java.text.NumberFormat;
67
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068/**
69 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
70 * because we want to make the bubble taller than the text and TextView's clip is
71 * too aggressive.
72 */
Jon Miranda9b78e192019-08-30 18:42:01 -070073public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Adam Cohend9162062020-03-24 16:35:35 -070074 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070075
Sunny Goyaldfaccf62015-05-11 16:30:44 -070076 private static final int DISPLAY_WORKSPACE = 0;
77 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070078 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070079
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080080 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
81
Adam Cohen1d13c0b2020-04-21 16:29:12 -070082 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
83 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
84
85 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080086
Tony Wickhamf34bee82018-12-03 18:11:39 -080087 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
88 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080089 @Override
90 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080091 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080092 }
93
94 @Override
95 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080096 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080097 bubbleTextView.invalidate();
98 }
99 };
100
Sunny Goyaled7a6932018-04-13 11:41:50 -0700101 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
102 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700103 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700104 public Float get(BubbleTextView bubbleTextView) {
105 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700106 }
107
108 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700109 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700110 bubbleTextView.setTextAlpha(alpha);
111 }
112 };
113
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800114 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700115 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800116 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700117
Samuel Fufac96fa242019-09-26 23:06:32 -0700118 private final int mDisplay;
119
Sunny Goyaled7a6932018-04-13 11:41:50 -0700120 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700121
122 private final boolean mLayoutHorizontal;
123 private final int mIconSize;
124
125 @ViewDebug.ExportedProperty(category = "launcher")
126 private boolean mIsIconVisible = true;
127 @ViewDebug.ExportedProperty(category = "launcher")
128 private int mTextColor;
129 @ViewDebug.ExportedProperty(category = "launcher")
130 private float mTextAlpha = 1;
131
Tony4043b052018-08-17 13:47:39 -0700132 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800133 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800134 private DotRenderer mDotRenderer;
135 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
136 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800137 private Animator mDotScaleAnim;
138 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700139
Sunny Goyal4ffec482016-02-09 11:28:52 -0800140 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800141 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800142 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700143 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800144 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700145 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500146
Sunny Goyal34b65272015-03-11 16:56:52 -0700147 private IconLoadRequest mIconLoadRequest;
148
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700150 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 }
152
153 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700154 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800155 }
156
157 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
158 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800159 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700160
Adam Cohen96bb7982014-07-07 11:58:56 -0700161 TypedArray a = context.obtainStyledAttributes(attrs,
162 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800163 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700164 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700165
Samuel Fufac96fa242019-09-26 23:06:32 -0700166 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700167 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700168 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700169 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700170 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700171 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700172 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700173 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
174 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700175 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700176 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700177 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700178 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700179 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700180 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700181 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700182 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700183 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700184
Winson1f064272016-07-18 17:18:02 -0700185 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700186
187 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
188 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700189 a.recycle();
190
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800191 mLongPressHelper = new CheckLongPressHelper(this);
192
Tony Wickham8912b042018-11-29 15:28:53 -0800193 mDotParams = new DotRenderer.DrawParams();
194
Sunny Goyal66dccad2018-03-19 12:00:51 -0700195 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700196 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700197 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800198 }
199
Sunny Goyal66dccad2018-03-19 12:00:51 -0700200 @Override
201 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
202 // Disable marques when not focused to that, so that updating text does not cause relayout.
203 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
204 super.onFocusChanged(focused, direction, previouslyFocusedRect);
205 }
206
Jon Miranda52549442017-10-26 11:28:06 -0700207 /**
208 * Resets the view so it can be recycled.
209 */
210 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800211 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800212 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800213 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800214 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800215 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800216 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700217 }
218
Tony Wickhamf34bee82018-12-03 18:11:39 -0800219 private void cancelDotScaleAnim() {
220 if (mDotScaleAnim != null) {
221 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700222 }
223 }
224
Tony Wickhamf34bee82018-12-03 18:11:39 -0800225 private void animateDotScale(float... dotScales) {
226 cancelDotScaleAnim();
227 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
228 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700229 @Override
230 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800231 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700232 }
233 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800234 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700235 }
236
Sunny Goyal95899162019-03-27 16:03:06 -0700237 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
238 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700239 }
240
Adam Cohen29794c52019-06-21 12:50:30 -0700241 @Override
242 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
243 if (delegate instanceof LauncherAccessibilityDelegate) {
244 super.setAccessibilityDelegate(delegate);
245 } else {
246 // NO-OP
247 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
248 // delegate incorrectly. There are no cases when we shouldn't be using the
249 // LauncherAccessibilityDelegate for BubbleTextView.
250 }
251 }
252
Sunny Goyal95899162019-03-27 16:03:06 -0700253 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800254 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800255 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700256 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800257 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500258 }
Tony Wickham010d2552017-01-20 08:15:28 -0800259
Tony Wickhamf34bee82018-12-03 18:11:39 -0800260 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800261 }
262
Sunny Goyal508da152014-08-14 10:53:27 -0700263 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800264 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700265
Sunny Goyal95899162019-03-27 16:03:06 -0700266 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700267 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700268
269 // Verify high res immediately
270 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800271
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700272 if (info instanceof PromiseAppInfo) {
273 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
274 applyProgressLevel(promiseAppInfo.level);
275 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800276 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700277 }
278
Sunny Goyal0e08f162015-05-12 11:32:39 -0700279 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800280 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700281 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700282 super.setTag(info);
283
284 // Verify high res immediately
285 verifyHighRes();
286 }
287
Sunny Goyal179249d2017-12-19 16:49:24 -0800288 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700289 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700290 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800291
Sunny Goyalf4204382016-07-13 10:46:07 -0700292 setIcon(iconDrawable);
293 setText(info.title);
294 if (info.contentDescription != null) {
295 setContentDescription(info.isDisabled()
296 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
297 : info.contentDescription);
298 }
299 }
300
Winson Chung7501adf2015-06-02 11:24:28 -0700301 /**
302 * Overrides the default long press timeout.
303 */
Tony2ca999c2018-09-24 17:24:51 -0400304 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
305 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700306 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700307
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800308 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800309 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700310 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800311 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800312 }
Sunny Goyal508da152014-08-14 10:53:27 -0700313 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800314
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800315 @Override
316 protected int[] onCreateDrawableState(int extraSpace) {
317 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
318 if (mStayPressed) {
319 mergeDrawableStates(drawableState, STATE_PRESSED);
320 }
321 return drawableState;
322 }
323
Winson Chungb745afb2015-03-02 11:51:23 -0800324 /** Returns the icon for this view. */
325 public Drawable getIcon() {
326 return mIcon;
327 }
328
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700329 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800330 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700331 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700332 if (event.getAction() == MotionEvent.ACTION_DOWN
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700333 && (event.getY() < getPaddingTop()
334 || event.getX() < getPaddingLeft()
335 || event.getY() > getHeight() - getPaddingBottom()
336 || event.getX() > getWidth() - getPaddingRight())) {
337 return false;
338 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700339 if (isLongClickable()) {
340 super.onTouchEvent(event);
341 mLongPressHelper.onTouchEvent(event);
342 // Keep receiving the rest of the events
343 return true;
344 } else {
345 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700346 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800347 }
348
Michael Jurkaddd62e92011-02-16 17:49:14 -0800349 void setStayPressed(boolean stayPressed) {
350 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800351 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800352 }
353
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700354 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800355 public void onVisibilityAggregated(boolean isVisible) {
356 super.onVisibilityAggregated(isVisible);
357 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800358 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800359 }
360 }
361
362 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700363 public void onLauncherResume() {
364 // Reset the pressed state of icon that was locked in the press state while activity
365 // was launching
366 setStayPressed(false);
367 }
368
Sunny Goyal508da152014-08-14 10:53:27 -0700369 void clearPressedBackground() {
370 setPressed(false);
371 setStayPressed(false);
372 }
373
374 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700375 public boolean onKeyUp(int keyCode, KeyEvent event) {
376 // Unlike touch events, keypress event propagate pressed state change immediately,
377 // without waiting for onClickHandler to execute. Disable pressed state changes here
378 // to avoid flickering.
379 mIgnorePressedStateChange = true;
380 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700381 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800382 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700383 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800384 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800385
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700386 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800387 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700388 super.onDraw(canvas);
389 }
390
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800391 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700392 public void onDraw(Canvas canvas) {
393 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800394 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800395 }
396
397 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800398 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800399 * @param canvas The canvas to draw to.
400 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800401 protected void drawDotIfNecessary(Canvas canvas) {
402 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800403 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700404 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800405 final int scrollX = getScrollX();
406 final int scrollY = getScrollY();
407 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800408 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800409 canvas.translate(-scrollX, -scrollY);
410 }
411 }
412
Jon Miranda9b78e192019-08-30 18:42:01 -0700413 @Override
414 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800415 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800416 return;
417 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800418 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800419
Tony Wickhamf34bee82018-12-03 18:11:39 -0800420 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800421 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800422 } else if (hasDot()) {
423 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800424 }
425 }
426
Tony Wickhamf34bee82018-12-03 18:11:39 -0800427 private boolean hasDot() {
428 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800429 }
430
431 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700432 getIconBounds(this, outBounds, mIconSize);
433 }
434
435 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
436 int top = iconView.getPaddingTop();
437 int left = (iconView.getWidth() - iconSize) / 2;
438 int right = left + iconSize;
439 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800440 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800441 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400442
443 @Override
Winson1f064272016-07-18 17:18:02 -0700444 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
445 if (mCenterVertically) {
446 Paint.FontMetrics fm = getPaint().getFontMetrics();
447 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
448 (int) Math.ceil(fm.bottom - fm.top);
449 int height = MeasureSpec.getSize(heightMeasureSpec);
450 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
451 getPaddingBottom());
452 }
453 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
454 }
455
456 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700457 public void setTextColor(int color) {
458 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700459 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700460 }
461
Adam Cohen96bb7982014-07-07 11:58:56 -0700462 @Override
463 public void setTextColor(ColorStateList colors) {
464 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700465 if (Float.compare(mTextAlpha, 1) == 0) {
466 super.setTextColor(colors);
467 } else {
468 super.setTextColor(getModifiedColor());
469 }
Adam Cohen477828c2013-09-20 12:05:49 -0700470 }
471
Tony7308cde2017-06-27 22:38:33 -0700472 public boolean shouldTextBeVisible() {
473 // Text should be visible everywhere but the hotseat.
474 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
475 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700476 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
477 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700478 }
479
Winson Chung5f8afe62013-08-12 16:19:28 -0700480 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700481 setTextAlpha(visible ? 1 : 0);
482 }
483
484 private void setTextAlpha(float alpha) {
485 mTextAlpha = alpha;
486 super.setTextColor(getModifiedColor());
487 }
488
489 private int getModifiedColor() {
490 if (mTextAlpha == 0) {
491 // Special case to prevent text shadows in high contrast mode
492 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700493 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800494 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700495 }
496
497 /**
498 * Creates an animator to fade the text in or out.
499 * @param fadeIn Whether the text should fade in or fade out.
500 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700501 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700502 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700503 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700504 }
505
Winson Chungaffd7b42010-08-20 15:11:56 -0700506 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800507 public void cancelLongPress() {
508 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800509 mLongPressHelper.cancelLongPress();
510 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500511
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800512 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700513 if (getTag() instanceof WorkspaceItemInfo) {
514 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700515 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700516 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700517 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700518 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700519
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700520 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
521 if (preloadDrawable != null && promiseStateChanged) {
522 preloadDrawable.maybePerformFinishedAnimation();
523 }
524 }
525 }
526
527 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
528 if (getTag() instanceof ItemInfoWithIcon) {
529 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700530 if (progressLevel >= 100) {
531 setContentDescription(info.contentDescription != null
532 ? info.contentDescription : "");
533 } else if (progressLevel > 0) {
534 setContentDescription(getContext()
535 .getString(R.string.app_downloading_title, info.title,
536 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
537 } else {
538 setContentDescription(getContext()
539 .getString(R.string.app_waiting_download_title, info.title));
540 }
Winson Chungb745afb2015-03-02 11:51:23 -0800541 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700542 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800543 if (mIcon instanceof PreloadIconDrawable) {
544 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700545 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700546 } else {
Sunny Goyal14168432019-10-24 15:59:49 -0700547 preloadDrawable = newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700548 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700549 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700550 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700551 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700552 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400553 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700554 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400555 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700556
Tony Wickhamf34bee82018-12-03 18:11:39 -0800557 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800558 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800559 boolean wasDotted = mDotInfo != null;
560 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
561 boolean isDotted = mDotInfo != null;
562 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700563 if (mDisplay == DISPLAY_ALL_APPS) {
564 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
565 } else {
566 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
567 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800568 if (wasDotted || isDotted) {
569 // Animate when a dot is first added or when it is removed.
570 if (animate && (wasDotted ^ isDotted) && isShown()) {
571 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800572 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800573 cancelDotScaleAnim();
574 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800575 invalidate();
576 }
577 }
Tony Wickham305e9202018-01-23 17:46:47 -0800578 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700579 if (itemInfo.isDisabled()) {
580 setContentDescription(getContext().getString(R.string.disabled_app_label,
581 itemInfo.contentDescription));
582 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800583 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800584 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800585 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800586 } else {
587 setContentDescription(itemInfo.contentDescription);
588 }
589 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800590 }
591 }
592
Winson Chungb745afb2015-03-02 11:51:23 -0800593 /**
594 * Sets the icon for this view based on the layout direction.
595 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700596 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700597 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700598 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700599 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700600 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800601 if (mIcon != null) {
602 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
603 }
Tony17b7f9b2017-05-23 12:19:09 -0700604 }
605
Jon Miranda9b78e192019-08-30 18:42:01 -0700606 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700607 public void setIconVisible(boolean visible) {
608 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700609 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700610 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700611 }
612
613 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700614 // If we had already set an icon before, disable relayout as the icon size is the
615 // same as before.
616 mDisableRelayout = mIcon != null;
617
618 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800619 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800620 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800621 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700622 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800623 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700624 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800625 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700626
Sunny Goyal69b75642015-05-15 17:00:24 -0700627 @Override
628 public void requestLayout() {
629 if (!mDisableRelayout) {
630 super.requestLayout();
631 }
632 }
633
Sunny Goyal34b65272015-03-11 16:56:52 -0700634 /**
635 * Applies the item info if it is same as what the view is pointing to currently.
636 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800637 @Override
638 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700639 if (getTag() == info) {
640 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700641 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700642
Jon Miranda7f522a22017-07-28 11:56:47 -0700643 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700644 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700645
Sunny Goyal34b65272015-03-11 16:56:52 -0700646 if (info instanceof AppInfo) {
647 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700648 } else if (info instanceof WorkspaceItemInfo) {
649 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700650 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700651 } else if (info instanceof PackageItemInfo) {
652 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700653 }
Winsonc0880492015-08-21 11:16:27 -0700654
Sunny Goyal69b75642015-05-15 17:00:24 -0700655 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700656 }
657 }
658
659 /**
660 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
661 */
662 public void verifyHighRes() {
663 if (mIconLoadRequest != null) {
664 mIconLoadRequest.cancel();
665 mIconLoadRequest = null;
666 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800667 if (getTag() instanceof ItemInfoWithIcon) {
668 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700669 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800670 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700671 .updateIconInBackground(BubbleTextView.this, info);
672 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700673 }
674 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700675
Jon Miranda47170112017-03-03 14:57:14 -0800676 public int getIconSize() {
677 return mIconSize;
678 }
Adam Cohen65086992020-02-19 08:40:49 -0800679
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700680 private void updateTranslation() {
681 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
682 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700683 }
684
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700685 public void setReorderBounceOffset(float x, float y) {
686 mTranslationForReorderBounce.set(x, y);
687 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700688 }
689
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700690 public void getReorderBounceOffset(PointF offset) {
691 offset.set(mTranslationForReorderBounce);
692 }
693
694 @Override
695 public void setReorderPreviewOffset(float x, float y) {
696 mTranslationForReorderPreview.set(x, y);
697 updateTranslation();
698 }
699
700 @Override
701 public void getReorderPreviewOffset(PointF offset) {
702 offset.set(mTranslationForReorderPreview);
703 }
704
705 public void setReorderBounceScale(float scale) {
706 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700707 super.setScaleX(scale);
708 super.setScaleY(scale);
709 }
710
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700711 public float getReorderBounceScale() {
712 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700713 }
714
715 public View getView() {
716 return this;
717 }
718
Adam Cohen65086992020-02-19 08:40:49 -0800719 @Override
720 public int getViewType() {
721 return DRAGGABLE_ICON;
722 }
723
724 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700725 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800726 DeviceProfile grid = mActivity.getDeviceProfile();
727 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
728 }
729
Adam Cohenc77bc452020-05-07 11:55:19 -0700730 private int getIconSizeForDisplay(int display) {
731 DeviceProfile grid = mActivity.getDeviceProfile();
732 switch (display) {
733 case DISPLAY_ALL_APPS:
734 return grid.allAppsIconSizePx;
735 case DISPLAY_WORKSPACE:
736 case DISPLAY_FOLDER:
737 default:
738 return grid.iconSizePx;
739 }
740 }
741
742 public void getSourceVisualDragBounds(Rect bounds) {
743 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
744 }
745
Adam Cohen65086992020-02-19 08:40:49 -0800746 @Override
747 public void prepareDrawDragView() {
748 if (getIcon() instanceof FastBitmapDrawable) {
749 FastBitmapDrawable icon = (FastBitmapDrawable) getIcon();
750 icon.setScale(1f);
751 }
752 setForceHideDot(true);
753 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800754}