blob: 55d5de758a1b6b9a49d22a4864d8683bd10cf0e4 [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;
Samuel Fufa4a53c702020-08-04 14:06:55 -070080 private static final int DISPLAY_HERO_APP = 5;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070081
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080082 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
83
Adam Cohen1d13c0b2020-04-21 16:29:12 -070084 private final PointF mTranslationForReorderBounce = new PointF(0, 0);
85 private final PointF mTranslationForReorderPreview = new PointF(0, 0);
86
87 private float mScaleForReorderBounce = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080088
Tony Wickhamf34bee82018-12-03 18:11:39 -080089 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
90 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080091 @Override
92 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080093 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080094 }
95
96 @Override
97 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080098 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080099 bubbleTextView.invalidate();
100 }
101 };
102
Sunny Goyaled7a6932018-04-13 11:41:50 -0700103 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
104 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700105 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700106 public Float get(BubbleTextView bubbleTextView) {
107 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700108 }
109
110 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700111 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700112 bubbleTextView.setTextAlpha(alpha);
113 }
114 };
115
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800116 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700117 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800118 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700119
Samuel Fufac96fa242019-09-26 23:06:32 -0700120 private final int mDisplay;
121
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700123
124 private final boolean mLayoutHorizontal;
125 private final int mIconSize;
126
127 @ViewDebug.ExportedProperty(category = "launcher")
128 private boolean mIsIconVisible = true;
129 @ViewDebug.ExportedProperty(category = "launcher")
130 private int mTextColor;
131 @ViewDebug.ExportedProperty(category = "launcher")
132 private float mTextAlpha = 1;
133
Tony4043b052018-08-17 13:47:39 -0700134 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800135 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800136 private DotRenderer mDotRenderer;
137 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
138 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800139 private Animator mDotScaleAnim;
140 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700141
Sunny Goyal4ffec482016-02-09 11:28:52 -0800142 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800143 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800144 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700145 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800146 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700147 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500148
Sunny Goyal34b65272015-03-11 16:56:52 -0700149 private IconLoadRequest mIconLoadRequest;
150
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800151 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700152 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 }
154
155 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700156 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800157 }
158
159 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
160 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800161 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700162
Adam Cohen96bb7982014-07-07 11:58:56 -0700163 TypedArray a = context.obtainStyledAttributes(attrs,
164 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800165 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700166 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700167
Samuel Fufac96fa242019-09-26 23:06:32 -0700168 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700169 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700170 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700171 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700172 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700173 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700174 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700175 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
176 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700177 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700178 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700179 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700180 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700181 defaultIconSize = grid.folderChildIconSizePx;
Samuel Fufa4a53c702020-08-04 14:06:55 -0700182 } else if (mDisplay == DISPLAY_HERO_APP) {
183 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700184 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700185 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700186 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700187 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700188
Winson1f064272016-07-18 17:18:02 -0700189 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700190
191 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
192 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700193 a.recycle();
194
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800195 mLongPressHelper = new CheckLongPressHelper(this);
196
Tony Wickham8912b042018-11-29 15:28:53 -0800197 mDotParams = new DotRenderer.DrawParams();
198
Sunny Goyal66dccad2018-03-19 12:00:51 -0700199 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700200 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700201 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800202 }
203
Sunny Goyal66dccad2018-03-19 12:00:51 -0700204 @Override
205 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
206 // Disable marques when not focused to that, so that updating text does not cause relayout.
207 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
208 super.onFocusChanged(focused, direction, previouslyFocusedRect);
209 }
210
Jon Miranda52549442017-10-26 11:28:06 -0700211 /**
212 * Resets the view so it can be recycled.
213 */
214 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800215 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800216 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800217 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800218 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800219 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800220 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700221 }
222
Tony Wickhamf34bee82018-12-03 18:11:39 -0800223 private void cancelDotScaleAnim() {
224 if (mDotScaleAnim != null) {
225 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700226 }
227 }
228
Tony Wickhamf34bee82018-12-03 18:11:39 -0800229 private void animateDotScale(float... dotScales) {
230 cancelDotScaleAnim();
231 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
232 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700233 @Override
234 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800235 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700236 }
237 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800238 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700239 }
240
Sunny Goyal95899162019-03-27 16:03:06 -0700241 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
242 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700243 }
244
Adam Cohen29794c52019-06-21 12:50:30 -0700245 @Override
246 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
247 if (delegate instanceof LauncherAccessibilityDelegate) {
248 super.setAccessibilityDelegate(delegate);
249 } else {
250 // NO-OP
251 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
252 // delegate incorrectly. There are no cases when we shouldn't be using the
253 // LauncherAccessibilityDelegate for BubbleTextView.
254 }
255 }
256
Sunny Goyal95899162019-03-27 16:03:06 -0700257 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800258 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800259 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700260 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800261 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500262 }
Tony Wickham010d2552017-01-20 08:15:28 -0800263
Tony Wickhamf34bee82018-12-03 18:11:39 -0800264 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800265 }
266
Sunny Goyal508da152014-08-14 10:53:27 -0700267 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800268 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700269
Sunny Goyal95899162019-03-27 16:03:06 -0700270 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700271 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700272
273 // Verify high res immediately
274 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800275
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700276 if (info instanceof PromiseAppInfo) {
277 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
278 applyProgressLevel(promiseAppInfo.level);
279 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800280 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700281 }
282
Sunny Goyal0e08f162015-05-12 11:32:39 -0700283 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800284 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700285 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700286 super.setTag(info);
287
288 // Verify high res immediately
289 verifyHighRes();
290 }
291
Sunny Goyal179249d2017-12-19 16:49:24 -0800292 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700293 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700294 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800295
Sunny Goyalf4204382016-07-13 10:46:07 -0700296 setIcon(iconDrawable);
297 setText(info.title);
298 if (info.contentDescription != null) {
299 setContentDescription(info.isDisabled()
300 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
301 : info.contentDescription);
302 }
303 }
304
Winson Chung7501adf2015-06-02 11:24:28 -0700305 /**
306 * Overrides the default long press timeout.
307 */
Tony2ca999c2018-09-24 17:24:51 -0400308 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
309 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700310 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700311
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800312 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800313 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700314 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800315 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800316 }
Sunny Goyal508da152014-08-14 10:53:27 -0700317 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800318
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800319 @Override
320 protected int[] onCreateDrawableState(int extraSpace) {
321 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
322 if (mStayPressed) {
323 mergeDrawableStates(drawableState, STATE_PRESSED);
324 }
325 return drawableState;
326 }
327
Winson Chungb745afb2015-03-02 11:51:23 -0800328 /** Returns the icon for this view. */
329 public Drawable getIcon() {
330 return mIcon;
331 }
332
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700333 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800334 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700335 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700336 if (event.getAction() == MotionEvent.ACTION_DOWN
Sunny Goyal44a3b202020-07-09 08:27:06 -0700337 && shouldIgnoreTouchDown(event.getX(), event.getY())) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700338 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
Sunny Goyal44a3b202020-07-09 08:27:06 -0700350 /**
351 * Returns true if the touch down at the provided position be ignored
352 */
353 protected boolean shouldIgnoreTouchDown(float x, float y) {
354 return y < getPaddingTop()
355 || x < getPaddingLeft()
356 || y > getHeight() - getPaddingBottom()
357 || x > getWidth() - getPaddingRight();
358 }
359
Michael Jurkaddd62e92011-02-16 17:49:14 -0800360 void setStayPressed(boolean stayPressed) {
361 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800362 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800363 }
364
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700365 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800366 public void onVisibilityAggregated(boolean isVisible) {
367 super.onVisibilityAggregated(isVisible);
368 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800369 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800370 }
371 }
372
373 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700374 public void onLauncherResume() {
375 // Reset the pressed state of icon that was locked in the press state while activity
376 // was launching
377 setStayPressed(false);
378 }
379
Sunny Goyal508da152014-08-14 10:53:27 -0700380 void clearPressedBackground() {
381 setPressed(false);
382 setStayPressed(false);
383 }
384
385 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700386 public boolean onKeyUp(int keyCode, KeyEvent event) {
387 // Unlike touch events, keypress event propagate pressed state change immediately,
388 // without waiting for onClickHandler to execute. Disable pressed state changes here
389 // to avoid flickering.
390 mIgnorePressedStateChange = true;
391 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700392 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800393 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700394 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800395 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800396
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700397 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800398 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700399 super.onDraw(canvas);
400 }
401
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800402 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700403 public void onDraw(Canvas canvas) {
404 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800405 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800406 }
407
408 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800409 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800410 * @param canvas The canvas to draw to.
411 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800412 protected void drawDotIfNecessary(Canvas canvas) {
413 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800414 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700415 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800416 final int scrollX = getScrollX();
417 final int scrollY = getScrollY();
418 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800419 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800420 canvas.translate(-scrollX, -scrollY);
421 }
422 }
423
Jon Miranda9b78e192019-08-30 18:42:01 -0700424 @Override
425 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800426 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800427 return;
428 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800429 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800430
Tony Wickhamf34bee82018-12-03 18:11:39 -0800431 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800432 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800433 } else if (hasDot()) {
434 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800435 }
436 }
437
Tony Wickhamf34bee82018-12-03 18:11:39 -0800438 private boolean hasDot() {
439 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800440 }
441
442 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700443 getIconBounds(this, outBounds, mIconSize);
444 }
445
446 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
447 int top = iconView.getPaddingTop();
448 int left = (iconView.getWidth() - iconSize) / 2;
449 int right = left + iconSize;
450 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800451 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400453
454 @Override
Winson1f064272016-07-18 17:18:02 -0700455 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
456 if (mCenterVertically) {
457 Paint.FontMetrics fm = getPaint().getFontMetrics();
458 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
459 (int) Math.ceil(fm.bottom - fm.top);
460 int height = MeasureSpec.getSize(heightMeasureSpec);
461 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
462 getPaddingBottom());
463 }
464 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
465 }
466
467 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700468 public void setTextColor(int color) {
469 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700470 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700471 }
472
Adam Cohen96bb7982014-07-07 11:58:56 -0700473 @Override
474 public void setTextColor(ColorStateList colors) {
475 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700476 if (Float.compare(mTextAlpha, 1) == 0) {
477 super.setTextColor(colors);
478 } else {
479 super.setTextColor(getModifiedColor());
480 }
Adam Cohen477828c2013-09-20 12:05:49 -0700481 }
482
Tony7308cde2017-06-27 22:38:33 -0700483 public boolean shouldTextBeVisible() {
484 // Text should be visible everywhere but the hotseat.
485 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
486 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700487 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
488 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700489 }
490
Winson Chung5f8afe62013-08-12 16:19:28 -0700491 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700492 setTextAlpha(visible ? 1 : 0);
493 }
494
495 private void setTextAlpha(float alpha) {
496 mTextAlpha = alpha;
497 super.setTextColor(getModifiedColor());
498 }
499
500 private int getModifiedColor() {
501 if (mTextAlpha == 0) {
502 // Special case to prevent text shadows in high contrast mode
503 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700504 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800505 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700506 }
507
508 /**
509 * Creates an animator to fade the text in or out.
510 * @param fadeIn Whether the text should fade in or fade out.
511 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700512 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700513 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700514 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700515 }
516
Winson Chungaffd7b42010-08-20 15:11:56 -0700517 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800518 public void cancelLongPress() {
519 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800520 mLongPressHelper.cancelLongPress();
521 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500522
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800523 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700524 if (getTag() instanceof WorkspaceItemInfo) {
525 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700526 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700527 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700528 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700529 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700530
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700531 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
532 if (preloadDrawable != null && promiseStateChanged) {
533 preloadDrawable.maybePerformFinishedAnimation();
534 }
535 }
536 }
537
538 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
539 if (getTag() instanceof ItemInfoWithIcon) {
540 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700541 if (progressLevel >= 100) {
542 setContentDescription(info.contentDescription != null
543 ? info.contentDescription : "");
544 } else if (progressLevel > 0) {
545 setContentDescription(getContext()
546 .getString(R.string.app_downloading_title, info.title,
547 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
548 } else {
549 setContentDescription(getContext()
550 .getString(R.string.app_waiting_download_title, info.title));
551 }
Winson Chungb745afb2015-03-02 11:51:23 -0800552 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700553 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800554 if (mIcon instanceof PreloadIconDrawable) {
555 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700556 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700557 } else {
Sunny Goyal14168432019-10-24 15:59:49 -0700558 preloadDrawable = newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700559 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700560 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700561 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700562 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700563 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400564 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700565 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400566 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700567
Tony Wickhamf34bee82018-12-03 18:11:39 -0800568 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800569 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800570 boolean wasDotted = mDotInfo != null;
571 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
572 boolean isDotted = mDotInfo != null;
573 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700574 if (mDisplay == DISPLAY_ALL_APPS) {
575 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
576 } else {
577 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
578 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800579 if (wasDotted || isDotted) {
580 // Animate when a dot is first added or when it is removed.
581 if (animate && (wasDotted ^ isDotted) && isShown()) {
582 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800583 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800584 cancelDotScaleAnim();
585 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800586 invalidate();
587 }
588 }
Tony Wickham305e9202018-01-23 17:46:47 -0800589 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700590 if (itemInfo.isDisabled()) {
591 setContentDescription(getContext().getString(R.string.disabled_app_label,
592 itemInfo.contentDescription));
593 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800594 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800595 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800596 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800597 } else {
598 setContentDescription(itemInfo.contentDescription);
599 }
600 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800601 }
602 }
603
Winson Chungb745afb2015-03-02 11:51:23 -0800604 /**
605 * Sets the icon for this view based on the layout direction.
606 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700607 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700608 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700609 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700610 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700611 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800612 if (mIcon != null) {
613 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
614 }
Tony17b7f9b2017-05-23 12:19:09 -0700615 }
616
Jon Miranda9b78e192019-08-30 18:42:01 -0700617 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700618 public void setIconVisible(boolean visible) {
619 mIsIconVisible = visible;
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700620 if (!mIsIconVisible) {
621 resetIconScale();
622 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700623 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700624 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700625 }
626
627 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700628 // If we had already set an icon before, disable relayout as the icon size is the
629 // same as before.
630 mDisableRelayout = mIcon != null;
631
632 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800633 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800634 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800635 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700636 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800637 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700638 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800639 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700640
Sunny Goyal69b75642015-05-15 17:00:24 -0700641 @Override
642 public void requestLayout() {
643 if (!mDisableRelayout) {
644 super.requestLayout();
645 }
646 }
647
Sunny Goyal34b65272015-03-11 16:56:52 -0700648 /**
649 * Applies the item info if it is same as what the view is pointing to currently.
650 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800651 @Override
652 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700653 if (getTag() == info) {
654 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700655 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700656
Jon Miranda7f522a22017-07-28 11:56:47 -0700657 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700658 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700659
Sunny Goyal34b65272015-03-11 16:56:52 -0700660 if (info instanceof AppInfo) {
661 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700662 } else if (info instanceof WorkspaceItemInfo) {
663 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700664 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700665 } else if (info instanceof PackageItemInfo) {
666 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700667 }
Winsonc0880492015-08-21 11:16:27 -0700668
Sunny Goyal69b75642015-05-15 17:00:24 -0700669 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700670 }
671 }
672
673 /**
674 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
675 */
676 public void verifyHighRes() {
677 if (mIconLoadRequest != null) {
678 mIconLoadRequest.cancel();
679 mIconLoadRequest = null;
680 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800681 if (getTag() instanceof ItemInfoWithIcon) {
682 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700683 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800684 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700685 .updateIconInBackground(BubbleTextView.this, info);
686 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700687 }
688 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700689
Jon Miranda47170112017-03-03 14:57:14 -0800690 public int getIconSize() {
691 return mIconSize;
692 }
Adam Cohen65086992020-02-19 08:40:49 -0800693
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700694 private void updateTranslation() {
695 super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x);
696 super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y);
Adam Cohend9162062020-03-24 16:35:35 -0700697 }
698
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700699 public void setReorderBounceOffset(float x, float y) {
700 mTranslationForReorderBounce.set(x, y);
701 updateTranslation();
Adam Cohend9162062020-03-24 16:35:35 -0700702 }
703
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700704 public void getReorderBounceOffset(PointF offset) {
705 offset.set(mTranslationForReorderBounce);
706 }
707
708 @Override
709 public void setReorderPreviewOffset(float x, float y) {
710 mTranslationForReorderPreview.set(x, y);
711 updateTranslation();
712 }
713
714 @Override
715 public void getReorderPreviewOffset(PointF offset) {
716 offset.set(mTranslationForReorderPreview);
717 }
718
719 public void setReorderBounceScale(float scale) {
720 mScaleForReorderBounce = scale;
Adam Cohend9162062020-03-24 16:35:35 -0700721 super.setScaleX(scale);
722 super.setScaleY(scale);
723 }
724
Adam Cohen1d13c0b2020-04-21 16:29:12 -0700725 public float getReorderBounceScale() {
726 return mScaleForReorderBounce;
Adam Cohend9162062020-03-24 16:35:35 -0700727 }
728
729 public View getView() {
730 return this;
731 }
732
Adam Cohen65086992020-02-19 08:40:49 -0800733 @Override
734 public int getViewType() {
735 return DRAGGABLE_ICON;
736 }
737
738 @Override
Adam Cohenc77bc452020-05-07 11:55:19 -0700739 public void getWorkspaceVisualDragBounds(Rect bounds) {
Adam Cohen65086992020-02-19 08:40:49 -0800740 DeviceProfile grid = mActivity.getDeviceProfile();
741 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
742 }
743
Adam Cohenc77bc452020-05-07 11:55:19 -0700744 private int getIconSizeForDisplay(int display) {
745 DeviceProfile grid = mActivity.getDeviceProfile();
746 switch (display) {
747 case DISPLAY_ALL_APPS:
748 return grid.allAppsIconSizePx;
749 case DISPLAY_WORKSPACE:
750 case DISPLAY_FOLDER:
751 default:
752 return grid.iconSizePx;
753 }
754 }
755
756 public void getSourceVisualDragBounds(Rect bounds) {
757 BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay));
758 }
759
Adam Cohen65086992020-02-19 08:40:49 -0800760 @Override
Samuel Fufa167210a2020-05-12 18:40:11 -0700761 public SafeCloseable prepareDrawDragView() {
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700762 resetIconScale();
Adam Cohen65086992020-02-19 08:40:49 -0800763 setForceHideDot(true);
Samuel Fufa167210a2020-05-12 18:40:11 -0700764 return () -> { };
Adam Cohen65086992020-02-19 08:40:49 -0800765 }
Sunny Goyal30ac97d2020-06-24 23:47:46 -0700766
767 private void resetIconScale() {
768 if (mIcon instanceof FastBitmapDrawable) {
769 ((FastBitmapDrawable) mIcon).setScale(1f);
770 }
771 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800772}