blob: 22c69f59a5e06f15106cdf96afb6322ef63dcbd5 [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 Goyal066ace12018-11-05 11:08:31 -080019import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
20
Tony4043b052018-08-17 13:47:39 -070021import android.animation.Animator;
22import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080023import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070025import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070026import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070028import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070029import android.graphics.Paint;
Tony Wickham1237df02017-02-24 08:59:36 -080030import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070031import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080032import android.graphics.drawable.Drawable;
Sunny Goyal66dccad2018-03-19 12:00:51 -070033import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080034import android.util.AttributeSet;
vadimtf02bef72019-06-13 14:04:31 -070035import android.util.Log;
Tony Wickham1237df02017-02-24 08:59:36 -080036import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070037import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070038import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080039import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070040import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040041import android.view.ViewConfiguration;
Sunny Goyal4ffec482016-02-09 11:28:52 -080042import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080043import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070044
Sunny Goyal3dce5f32017-10-05 11:40:05 -070045import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070046import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080047import com.android.launcher3.dot.DotInfo;
Tony7308cde2017-06-27 22:38:33 -070048import com.android.launcher3.folder.FolderIcon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -080049import com.android.launcher3.graphics.DrawableFactory;
Tony Wickham1237df02017-02-24 08:59:36 -080050import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070051import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080052import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080053import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080054import com.android.launcher3.icons.IconCache.IconLoadRequest;
55import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070056import com.android.launcher3.model.PackageItemInfo;
vadimtf02bef72019-06-13 14:04:31 -070057import com.android.launcher3.testing.TestProtocol;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080058import com.android.launcher3.views.ActivityContext;
Sunny Goyal34b65272015-03-11 16:56:52 -070059
Sunny Goyalc469aad2015-10-01 11:24:23 -070060import java.text.NumberFormat;
61
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062/**
63 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
64 * because we want to make the bubble taller than the text and TextView's clip is
65 * too aggressive.
66 */
Sunny Goyal3dce5f32017-10-05 11:40:05 -070067public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback {
Sunny Goyal95abbb32014-08-04 10:53:22 -070068
Sunny Goyaldfaccf62015-05-11 16:30:44 -070069 private static final int DISPLAY_WORKSPACE = 0;
70 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070071 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070072
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080073 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
74
Tony Wickham1237df02017-02-24 08:59:36 -080075
Tony Wickhamf34bee82018-12-03 18:11:39 -080076 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
77 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080078 @Override
79 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080080 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080081 }
82
83 @Override
84 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080085 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080086 bubbleTextView.invalidate();
87 }
88 };
89
Sunny Goyaled7a6932018-04-13 11:41:50 -070090 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
91 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -070092 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070093 public Float get(BubbleTextView bubbleTextView) {
94 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -070095 }
96
97 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070098 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -070099 bubbleTextView.setTextAlpha(alpha);
100 }
101 };
102
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800103 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700104 private Drawable mIcon;
105 private final boolean mCenterVertically;
106
107 private final CheckLongPressHelper mLongPressHelper;
108 private final StylusEventHelper mStylusEventHelper;
109 private final float mSlop;
110
111 private final boolean mLayoutHorizontal;
112 private final int mIconSize;
113
114 @ViewDebug.ExportedProperty(category = "launcher")
115 private boolean mIsIconVisible = true;
116 @ViewDebug.ExportedProperty(category = "launcher")
117 private int mTextColor;
118 @ViewDebug.ExportedProperty(category = "launcher")
119 private float mTextAlpha = 1;
120
Tony4043b052018-08-17 13:47:39 -0700121 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800122 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800123 private DotRenderer mDotRenderer;
124 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
125 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800126 private Animator mDotScaleAnim;
127 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700128
Sunny Goyal4ffec482016-02-09 11:28:52 -0800129 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800130 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800131 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700132 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800133 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700134 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500135
Sunny Goyal34b65272015-03-11 16:56:52 -0700136 private IconLoadRequest mIconLoadRequest;
137
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700139 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140 }
141
142 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700143 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800144 }
145
146 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
147 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800148 mActivity = ActivityContext.lookupContext(context);
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700149 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Adam Cohen96bb7982014-07-07 11:58:56 -0700150
Adam Cohen96bb7982014-07-07 11:58:56 -0700151 TypedArray a = context.obtainStyledAttributes(attrs,
152 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800153 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700154
155 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700156 final int defaultIconSize;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700157 if (display == DISPLAY_WORKSPACE) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700158 DeviceProfile grid = mActivity.getWallpaperDeviceProfile();
Winson Chung44d0aac2015-05-11 18:02:55 -0700159 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700160 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700161 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700162 } else if (display == DISPLAY_ALL_APPS) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700163 DeviceProfile grid = mActivity.getDeviceProfile();
Winson1f064272016-07-18 17:18:02 -0700164 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
165 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700166 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700167 } else if (display == DISPLAY_FOLDER) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700168 DeviceProfile grid = mActivity.getDeviceProfile();
Jon Mirandabf7d8122016-11-03 15:29:29 -0700169 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700170 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700171 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700172 } else {
173 defaultIconSize = mActivity.getDeviceProfile().iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700174 }
Winson1f064272016-07-18 17:18:02 -0700175 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700176
177 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
178 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700179 a.recycle();
180
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800181 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700182 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800183
Tony Wickham8912b042018-11-29 15:28:53 -0800184 mDotParams = new DotRenderer.DrawParams();
185
Sunny Goyal66dccad2018-03-19 12:00:51 -0700186 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700187 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700188 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800189 }
190
Sunny Goyal66dccad2018-03-19 12:00:51 -0700191 @Override
192 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
193 // Disable marques when not focused to that, so that updating text does not cause relayout.
194 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
195 super.onFocusChanged(focused, direction, previouslyFocusedRect);
196 }
197
Jon Miranda52549442017-10-26 11:28:06 -0700198 /**
199 * Resets the view so it can be recycled.
200 */
201 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800202 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800203 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800204 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800205 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800206 mForceHideDot = false;
Jon Miranda52549442017-10-26 11:28:06 -0700207 }
208
Tony Wickhamf34bee82018-12-03 18:11:39 -0800209 private void cancelDotScaleAnim() {
210 if (mDotScaleAnim != null) {
211 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700212 }
213 }
214
Tony Wickhamf34bee82018-12-03 18:11:39 -0800215 private void animateDotScale(float... dotScales) {
216 cancelDotScaleAnim();
217 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
218 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700219 @Override
220 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800221 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700222 }
223 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800224 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700225 }
226
Sunny Goyal95899162019-03-27 16:03:06 -0700227 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
228 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700229 }
230
Adam Cohen29794c52019-06-21 12:50:30 -0700231 @Override
232 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
233 if (delegate instanceof LauncherAccessibilityDelegate) {
234 super.setAccessibilityDelegate(delegate);
235 } else {
236 // NO-OP
237 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
238 // delegate incorrectly. There are no cases when we shouldn't be using the
239 // LauncherAccessibilityDelegate for BubbleTextView.
240 }
241 }
242
Sunny Goyal95899162019-03-27 16:03:06 -0700243 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800244 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800245 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700246 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800247 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500248 }
Tony Wickham010d2552017-01-20 08:15:28 -0800249
Tony Wickhamf34bee82018-12-03 18:11:39 -0800250 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800251 }
252
Sunny Goyal508da152014-08-14 10:53:27 -0700253 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800254 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700255
Sunny Goyal95899162019-03-27 16:03:06 -0700256 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700257 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700258
259 // Verify high res immediately
260 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800261
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700262 if (info instanceof PromiseAppInfo) {
263 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
264 applyProgressLevel(promiseAppInfo.level);
265 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800266 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700267 }
268
Sunny Goyal0e08f162015-05-12 11:32:39 -0700269 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800270 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700271 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700272 super.setTag(info);
273
274 // Verify high res immediately
275 verifyHighRes();
276 }
277
Sunny Goyal179249d2017-12-19 16:49:24 -0800278 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700279 FastBitmapDrawable iconDrawable = DrawableFactory.INSTANCE.get(getContext())
280 .newIcon(getContext(), info);
Tony Wickham8912b042018-11-29 15:28:53 -0800281 mDotParams.color = IconPalette.getMutedColor(info.iconColor, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800282
Sunny Goyalf4204382016-07-13 10:46:07 -0700283 setIcon(iconDrawable);
284 setText(info.title);
285 if (info.contentDescription != null) {
286 setContentDescription(info.isDisabled()
287 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
288 : info.contentDescription);
289 }
290 }
291
Winson Chung7501adf2015-06-02 11:24:28 -0700292 /**
293 * Overrides the default long press timeout.
294 */
Tony2ca999c2018-09-24 17:24:51 -0400295 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
296 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700297 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700298
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800300 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700301 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800302 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800303 }
Sunny Goyal508da152014-08-14 10:53:27 -0700304 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800305
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800306 @Override
307 protected int[] onCreateDrawableState(int extraSpace) {
308 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
309 if (mStayPressed) {
310 mergeDrawableStates(drawableState, STATE_PRESSED);
311 }
312 return drawableState;
313 }
314
Winson Chungb745afb2015-03-02 11:51:23 -0800315 /** Returns the icon for this view. */
316 public Drawable getIcon() {
317 return mIcon;
318 }
319
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700320 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800321 public boolean onTouchEvent(MotionEvent event) {
322 // Call the superclass onTouchEvent first, because sometimes it changes the state to
323 // isPressed() on an ACTION_UP
324 boolean result = super.onTouchEvent(event);
325
Mady Melloref044dd2015-06-02 15:35:07 -0700326 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700327 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700328 mLongPressHelper.cancelLongPress();
329 result = true;
330 }
331
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800332 switch (event.getAction()) {
333 case MotionEvent.ACTION_DOWN:
Mady Melloref044dd2015-06-02 15:35:07 -0700334 // If we're in a stylus button press, don't check for long press.
335 if (!mStylusEventHelper.inStylusButtonPressed()) {
336 mLongPressHelper.postCheckForLongPress();
337 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800338 break;
339 case MotionEvent.ACTION_CANCEL:
340 case MotionEvent.ACTION_UP:
Winson Chung88f33452012-02-23 15:23:44 -0800341 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800342 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400343 case MotionEvent.ACTION_MOVE:
344 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
345 mLongPressHelper.cancelLongPress();
346 }
347 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800348 }
349 return result;
350 }
351
Michael Jurkaddd62e92011-02-16 17:49:14 -0800352 void setStayPressed(boolean stayPressed) {
353 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800354 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800355 }
356
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700357 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800358 public void onVisibilityAggregated(boolean isVisible) {
359 super.onVisibilityAggregated(isVisible);
360 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800361 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800362 }
363 }
364
365 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700366 public void onLauncherResume() {
367 // Reset the pressed state of icon that was locked in the press state while activity
368 // was launching
369 setStayPressed(false);
370 }
371
Sunny Goyal508da152014-08-14 10:53:27 -0700372 void clearPressedBackground() {
373 setPressed(false);
374 setStayPressed(false);
375 }
376
377 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700378 public boolean onKeyUp(int keyCode, KeyEvent event) {
379 // Unlike touch events, keypress event propagate pressed state change immediately,
380 // without waiting for onClickHandler to execute. Disable pressed state changes here
381 // to avoid flickering.
382 mIgnorePressedStateChange = true;
383 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700384 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800385 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700386 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800387 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800388
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700389 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800390 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700391 super.onDraw(canvas);
392 }
393
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800394 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700395 public void onDraw(Canvas canvas) {
396 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800397 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800398 }
399
400 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800401 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800402 * @param canvas The canvas to draw to.
403 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800404 protected void drawDotIfNecessary(Canvas canvas) {
405 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800406 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700407 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800408 final int scrollX = getScrollX();
409 final int scrollY = getScrollY();
410 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800411 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800412 canvas.translate(-scrollX, -scrollY);
413 }
414 }
415
Tony Wickhamf34bee82018-12-03 18:11:39 -0800416 public void forceHideDot(boolean forceHideDot) {
417 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800418 return;
419 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800420 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800421
Tony Wickhamf34bee82018-12-03 18:11:39 -0800422 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800423 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800424 } else if (hasDot()) {
425 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800426 }
427 }
428
Tony Wickhamf34bee82018-12-03 18:11:39 -0800429 private boolean hasDot() {
430 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800431 }
432
433 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700434 getIconBounds(this, outBounds, mIconSize);
435 }
436
437 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
438 int top = iconView.getPaddingTop();
439 int left = (iconView.getWidth() - iconSize) / 2;
440 int right = left + iconSize;
441 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800442 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800443 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400444
445 @Override
Winson1f064272016-07-18 17:18:02 -0700446 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
447 if (mCenterVertically) {
448 Paint.FontMetrics fm = getPaint().getFontMetrics();
449 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
450 (int) Math.ceil(fm.bottom - fm.top);
451 int height = MeasureSpec.getSize(heightMeasureSpec);
452 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
453 getPaddingBottom());
454 }
455 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
456 }
457
458 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700459 public void setTextColor(int color) {
460 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700461 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700462 }
463
Adam Cohen96bb7982014-07-07 11:58:56 -0700464 @Override
465 public void setTextColor(ColorStateList colors) {
466 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700467 if (Float.compare(mTextAlpha, 1) == 0) {
468 super.setTextColor(colors);
469 } else {
470 super.setTextColor(getModifiedColor());
471 }
Adam Cohen477828c2013-09-20 12:05:49 -0700472 }
473
Tony7308cde2017-06-27 22:38:33 -0700474 public boolean shouldTextBeVisible() {
475 // Text should be visible everywhere but the hotseat.
476 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
477 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
478 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
479 }
480
Winson Chung5f8afe62013-08-12 16:19:28 -0700481 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700482 setTextAlpha(visible ? 1 : 0);
483 }
484
485 private void setTextAlpha(float alpha) {
486 mTextAlpha = alpha;
487 super.setTextColor(getModifiedColor());
488 }
489
490 private int getModifiedColor() {
491 if (mTextAlpha == 0) {
492 // Special case to prevent text shadows in high contrast mode
493 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700494 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800495 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700496 }
497
498 /**
499 * Creates an animator to fade the text in or out.
500 * @param fadeIn Whether the text should fade in or fade out.
501 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700502 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700503 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700504 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700505 }
506
Winson Chungaffd7b42010-08-20 15:11:56 -0700507 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800508 public void cancelLongPress() {
509 super.cancelLongPress();
510
511 mLongPressHelper.cancelLongPress();
512 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500513
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800514 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700515 if (getTag() instanceof WorkspaceItemInfo) {
516 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700517 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700518 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700519 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700520 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700521
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700522 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
523 if (preloadDrawable != null && promiseStateChanged) {
524 preloadDrawable.maybePerformFinishedAnimation();
525 }
526 }
527 }
528
529 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
530 if (getTag() instanceof ItemInfoWithIcon) {
531 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700532 if (progressLevel >= 100) {
533 setContentDescription(info.contentDescription != null
534 ? info.contentDescription : "");
535 } else if (progressLevel > 0) {
536 setContentDescription(getContext()
537 .getString(R.string.app_downloading_title, info.title,
538 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
539 } else {
540 setContentDescription(getContext()
541 .getString(R.string.app_waiting_download_title, info.title));
542 }
Winson Chungb745afb2015-03-02 11:51:23 -0800543 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700544 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800545 if (mIcon instanceof PreloadIconDrawable) {
546 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700547 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700548 } else {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700549 preloadDrawable = DrawableFactory.INSTANCE.get(getContext())
550 .newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700551 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700552 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700553 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700554 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700555 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400556 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700557 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400558 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700559
Tony Wickhamf34bee82018-12-03 18:11:39 -0800560 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800561 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800562 boolean wasDotted = mDotInfo != null;
563 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
564 boolean isDotted = mDotInfo != null;
565 float newDotScale = isDotted ? 1f : 0;
Tony Wickham8912b042018-11-29 15:28:53 -0800566 mDotRenderer = mActivity.getDeviceProfile().mDotRenderer;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800567 if (wasDotted || isDotted) {
568 // Animate when a dot is first added or when it is removed.
569 if (animate && (wasDotted ^ isDotted) && isShown()) {
570 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800571 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800572 cancelDotScaleAnim();
573 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800574 invalidate();
575 }
576 }
Tony Wickham305e9202018-01-23 17:46:47 -0800577 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700578 if (itemInfo.isDisabled()) {
579 setContentDescription(getContext().getString(R.string.disabled_app_label,
580 itemInfo.contentDescription));
581 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800582 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800583 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800584 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800585 } else {
586 setContentDescription(itemInfo.contentDescription);
587 }
588 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800589 }
590 }
591
Winson Chungb745afb2015-03-02 11:51:23 -0800592 /**
593 * Sets the icon for this view based on the layout direction.
594 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700595 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700596 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700597 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700598 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700599 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800600 if (mIcon != null) {
601 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
602 }
Tony17b7f9b2017-05-23 12:19:09 -0700603 }
604
605 public void setIconVisible(boolean visible) {
606 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700607 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700608 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700609 }
610
611 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700612 // If we had already set an icon before, disable relayout as the icon size is the
613 // same as before.
614 mDisableRelayout = mIcon != null;
615
616 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800617 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800618 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800619 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700620 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800621 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700622 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800623 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700624
Sunny Goyal69b75642015-05-15 17:00:24 -0700625 @Override
626 public void requestLayout() {
627 if (!mDisableRelayout) {
628 super.requestLayout();
629 }
630 }
631
Sunny Goyal34b65272015-03-11 16:56:52 -0700632 /**
633 * Applies the item info if it is same as what the view is pointing to currently.
634 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800635 @Override
636 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700637 if (getTag() == info) {
638 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700639 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700640
Jon Miranda7f522a22017-07-28 11:56:47 -0700641 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
642 info.iconBitmap.prepareToDraw();
643
Sunny Goyal34b65272015-03-11 16:56:52 -0700644 if (info instanceof AppInfo) {
645 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700646 } else if (info instanceof WorkspaceItemInfo) {
647 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700648 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700649 } else if (info instanceof PackageItemInfo) {
650 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700651 }
Winsonc0880492015-08-21 11:16:27 -0700652
Sunny Goyal69b75642015-05-15 17:00:24 -0700653 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700654 }
655 }
656
657 /**
658 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
659 */
660 public void verifyHighRes() {
661 if (mIconLoadRequest != null) {
662 mIconLoadRequest.cancel();
663 mIconLoadRequest = null;
664 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800665 if (getTag() instanceof ItemInfoWithIcon) {
666 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700667 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800668 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700669 .updateIconInBackground(BubbleTextView.this, info);
670 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700671 }
672 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700673
Jon Miranda47170112017-03-03 14:57:14 -0800674 public int getIconSize() {
675 return mIconSize;
676 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800677}