blob: 198f13d02ab811222eedfa53e06294a7d1e2835a [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
Sunny Goyal44a3b202020-07-09 08:27:06 -0700334 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700335 return false;
336 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700337 if (isLongClickable()) {
338 super.onTouchEvent(event);
339 mLongPressHelper.onTouchEvent(event);
340 // Keep receiving the rest of the events
341 return true;
342 } else {
343 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700344 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800345 }
346
Sunny Goyal44a3b202020-07-09 08:27:06 -0700347 /**
348 * Returns true if the touch down at the provided position be ignored
349 */
350 protected boolean shouldIgnoreTouchDown(float x, float y) {
351 return y < getPaddingTop()
352 || x < getPaddingLeft()
353 || y > getHeight() - getPaddingBottom()
354 || x > getWidth() - getPaddingRight();
355 }
356
Michael Jurkaddd62e92011-02-16 17:49:14 -0800357 void setStayPressed(boolean stayPressed) {
358 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800359 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800360 }
361
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700362 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800363 public void onVisibilityAggregated(boolean isVisible) {
364 super.onVisibilityAggregated(isVisible);
365 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800366 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800367 }
368 }
369
370 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700371 public void onLauncherResume() {
372 // Reset the pressed state of icon that was locked in the press state while activity
373 // was launching
374 setStayPressed(false);
375 }
376
Sunny Goyal508da152014-08-14 10:53:27 -0700377 void clearPressedBackground() {
378 setPressed(false);
379 setStayPressed(false);
380 }
381
382 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700383 public boolean onKeyUp(int keyCode, KeyEvent event) {
384 // Unlike touch events, keypress event propagate pressed state change immediately,
385 // without waiting for onClickHandler to execute. Disable pressed state changes here
386 // to avoid flickering.
387 mIgnorePressedStateChange = true;
388 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700389 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800390 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700391 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800392 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800393
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700394 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800395 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700396 super.onDraw(canvas);
397 }
398
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800399 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700400 public void onDraw(Canvas canvas) {
401 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800402 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800403 }
404
405 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800406 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800407 * @param canvas The canvas to draw to.
408 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800409 protected void drawDotIfNecessary(Canvas canvas) {
410 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800411 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700412 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800413 final int scrollX = getScrollX();
414 final int scrollY = getScrollY();
415 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800416 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800417 canvas.translate(-scrollX, -scrollY);
418 }
419 }
420
Jon Miranda9b78e192019-08-30 18:42:01 -0700421 @Override
422 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800423 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800424 return;
425 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800426 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800427
Tony Wickhamf34bee82018-12-03 18:11:39 -0800428 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800429 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800430 } else if (hasDot()) {
431 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800432 }
433 }
434
Tony Wickhamf34bee82018-12-03 18:11:39 -0800435 private boolean hasDot() {
436 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800437 }
438
439 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700440 getIconBounds(this, outBounds, mIconSize);
441 }
442
443 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
444 int top = iconView.getPaddingTop();
445 int left = (iconView.getWidth() - iconSize) / 2;
446 int right = left + iconSize;
447 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800448 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800449 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400450
451 @Override
Winson1f064272016-07-18 17:18:02 -0700452 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
453 if (mCenterVertically) {
454 Paint.FontMetrics fm = getPaint().getFontMetrics();
455 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
456 (int) Math.ceil(fm.bottom - fm.top);
457 int height = MeasureSpec.getSize(heightMeasureSpec);
458 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
459 getPaddingBottom());
460 }
461 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
462 }
463
464 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700465 public void setTextColor(int color) {
466 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700467 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700468 }
469
Adam Cohen96bb7982014-07-07 11:58:56 -0700470 @Override
471 public void setTextColor(ColorStateList colors) {
472 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700473 if (Float.compare(mTextAlpha, 1) == 0) {
474 super.setTextColor(colors);
475 } else {
476 super.setTextColor(getModifiedColor());
477 }
Adam Cohen477828c2013-09-20 12:05:49 -0700478 }
479
Tony7308cde2017-06-27 22:38:33 -0700480 public boolean shouldTextBeVisible() {
481 // Text should be visible everywhere but the hotseat.
482 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
483 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700484 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
485 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700486 }
487
Winson Chung5f8afe62013-08-12 16:19:28 -0700488 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700489 setTextAlpha(visible ? 1 : 0);
490 }
491
492 private void setTextAlpha(float alpha) {
493 mTextAlpha = alpha;
494 super.setTextColor(getModifiedColor());
495 }
496
497 private int getModifiedColor() {
498 if (mTextAlpha == 0) {
499 // Special case to prevent text shadows in high contrast mode
500 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700501 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800502 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700503 }
504
505 /**
506 * Creates an animator to fade the text in or out.
507 * @param fadeIn Whether the text should fade in or fade out.
508 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700509 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700510 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700511 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700512 }
513
Winson Chungaffd7b42010-08-20 15:11:56 -0700514 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800515 public void cancelLongPress() {
516 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800517 mLongPressHelper.cancelLongPress();
518 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500519
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800520 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700521 if (getTag() instanceof WorkspaceItemInfo) {
522 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700523 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700524 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700525 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700526 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700527
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700528 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
529 if (preloadDrawable != null && promiseStateChanged) {
530 preloadDrawable.maybePerformFinishedAnimation();
531 }
532 }
533 }
534
535 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
536 if (getTag() instanceof ItemInfoWithIcon) {
537 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700538 if (progressLevel >= 100) {
539 setContentDescription(info.contentDescription != null
540 ? info.contentDescription : "");
541 } else if (progressLevel > 0) {
542 setContentDescription(getContext()
543 .getString(R.string.app_downloading_title, info.title,
544 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
545 } else {
546 setContentDescription(getContext()
547 .getString(R.string.app_waiting_download_title, info.title));
548 }
Winson Chungb745afb2015-03-02 11:51:23 -0800549 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700550 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800551 if (mIcon instanceof PreloadIconDrawable) {
552 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700553 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700554 } else {
Sunny Goyal14168432019-10-24 15:59:49 -0700555 preloadDrawable = newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700556 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700557 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700558 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700559 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700560 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400561 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700562 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400563 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700564
Tony Wickhamf34bee82018-12-03 18:11:39 -0800565 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800566 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800567 boolean wasDotted = mDotInfo != null;
568 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
569 boolean isDotted = mDotInfo != null;
570 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700571 if (mDisplay == DISPLAY_ALL_APPS) {
572 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
573 } else {
574 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
575 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800576 if (wasDotted || isDotted) {
577 // Animate when a dot is first added or when it is removed.
578 if (animate && (wasDotted ^ isDotted) && isShown()) {
579 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800580 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800581 cancelDotScaleAnim();
582 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800583 invalidate();
584 }
585 }
Tony Wickham305e9202018-01-23 17:46:47 -0800586 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700587 if (itemInfo.isDisabled()) {
588 setContentDescription(getContext().getString(R.string.disabled_app_label,
589 itemInfo.contentDescription));
590 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800591 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800592 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800593 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800594 } else {
595 setContentDescription(itemInfo.contentDescription);
596 }
597 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800598 }
599 }
600
Winson Chungb745afb2015-03-02 11:51:23 -0800601 /**
602 * Sets the icon for this view based on the layout direction.
603 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700604 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700605 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700606 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700607 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700608 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800609 if (mIcon != null) {
610 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
611 }
Tony17b7f9b2017-05-23 12:19:09 -0700612 }
613
Jon Miranda9b78e192019-08-30 18:42:01 -0700614 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700615 public void setIconVisible(boolean visible) {
616 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700617 if (!mIsIconVisible) {
618 resetIconScale();
619 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700620 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700621 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700622 }
623
624 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700625 // If we had already set an icon before, disable relayout as the icon size is the
626 // same as before.
627 mDisableRelayout = mIcon != null;
628
629 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800630 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800631 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800632 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700633 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800634 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700635 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800636 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700637
Sunny Goyal69b75642015-05-15 17:00:24 -0700638 @Override
639 public void requestLayout() {
640 if (!mDisableRelayout) {
641 super.requestLayout();
642 }
643 }
644
Sunny Goyal34b65272015-03-11 16:56:52 -0700645 /**
646 * Applies the item info if it is same as what the view is pointing to currently.
647 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800648 @Override
649 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700650 if (getTag() == info) {
651 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700652 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700653
Jon Miranda7f522a22017-07-28 11:56:47 -0700654 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700655 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700656
Sunny Goyal34b65272015-03-11 16:56:52 -0700657 if (info instanceof AppInfo) {
658 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700659 } else if (info instanceof WorkspaceItemInfo) {
660 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700661 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700662 } else if (info instanceof PackageItemInfo) {
663 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700664 }
Winsonc0880492015-08-21 11:16:27 -0700665
Sunny Goyal69b75642015-05-15 17:00:24 -0700666 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700667 }
668 }
669
670 /**
671 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
672 */
673 public void verifyHighRes() {
674 if (mIconLoadRequest != null) {
675 mIconLoadRequest.cancel();
676 mIconLoadRequest = null;
677 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800678 if (getTag() instanceof ItemInfoWithIcon) {
679 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700680 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800681 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700682 .updateIconInBackground(BubbleTextView.this, info);
683 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700684 }
685 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700686
Jon Miranda47170112017-03-03 14:57:14 -0800687 public int getIconSize() {
688 return mIconSize;
689 }
Adam Cohen65086992020-02-19 08:40:49 -0800690
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700691 private void updateTranslation() {
692 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
693 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700694 }
695
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700696 public void setReorderBounceOffset(float x, float y) {
697 mTranslationForReorderBounce.set(x, y);
698 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700699 }
700
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700701 public void getReorderBounceOffset(PointF offset) {
702 offset.set(mTranslationForReorderBounce);
703 }
704
705 @Override
706 public void setReorderPreviewOffset(float x, float y) {
707 mTranslationForReorderPreview.set(x, y);
708 updateTranslation();
709 }
710
711 @Override
712 public void getReorderPreviewOffset(PointF offset) {
713 offset.set(mTranslationForReorderPreview);
714 }
715
716 public void setReorderBounceScale(float scale) {
717 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700718 super.setScaleX(scale);
719 super.setScaleY(scale);
720 }
721
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700722 public float getReorderBounceScale() {
723 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700724 }
725
726 public View getView() {
727 return this;
728 }
729
Adam Cohen65086992020-02-19 08:40:49 -0800730 @Override
731 public int getViewType() {
732 return DRAGGABLE_ICON;
733 }
734
735 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700736 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800737 DeviceProfile grid = mActivity.getDeviceProfile();
738 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
739 }
740
Adam Cohenc77bc452020-05-07 11:55:19 -0700741 private int getIconSizeForDisplay(int display) {
742 DeviceProfile grid = mActivity.getDeviceProfile();
743 switch (display) {
744 case DISPLAY_ALL_APPS:
745 return grid.allAppsIconSizePx;
746 case DISPLAY_WORKSPACE:
747 case DISPLAY_FOLDER:
748 default:
749 return grid.iconSizePx;
750 }
751 }
752
753 public void getSourceVisualDragBounds(Rect bounds) {
754 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
755 }
756
Adam Cohen65086992020-02-19 08:40:49 -0800757 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700758 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700759 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800760 setForceHideDot(true);
Samuel Fufa167210a2020-05-12 18:40:11 -0700761 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800762 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700763
764 private void resetIconScale() {
765 if (mIcon instanceof FastBitmapDrawable) {
766 ((FastBitmapDrawable) mIcon).setScale(1f);
767 }
768 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800769}