blob: bff7f42131008833be8ed1a8196983b2b764f5db [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;
Tony Wickham1237df02017-02-24 08:59:36 -080035import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070036import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070037import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080038import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070039import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040040import android.view.ViewConfiguration;
Sunny Goyal4ffec482016-02-09 11:28:52 -080041import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080042import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070043
Sunny Goyal3dce5f32017-10-05 11:40:05 -070044import com.android.launcher3.Launcher.OnResumeCallback;
Tony Wickhamf34bee82018-12-03 18:11:39 -080045import com.android.launcher3.dot.DotInfo;
Tony7308cde2017-06-27 22:38:33 -070046import com.android.launcher3.folder.FolderIcon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -080047import com.android.launcher3.graphics.DrawableFactory;
Tony Wickham1237df02017-02-24 08:59:36 -080048import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070049import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080050import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080051import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080052import com.android.launcher3.icons.IconCache.IconLoadRequest;
53import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070054import com.android.launcher3.icons.LauncherIcons;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070055import com.android.launcher3.model.PackageItemInfo;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080056import com.android.launcher3.views.ActivityContext;
Sunny Goyal34b65272015-03-11 16:56:52 -070057
Sunny Goyalc469aad2015-10-01 11:24:23 -070058import java.text.NumberFormat;
59
The Android Open Source Project31dd5032009-03-03 19:32:27 -080060/**
61 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
62 * because we want to make the bubble taller than the text and TextView's clip is
63 * too aggressive.
64 */
Sunny Goyal3dce5f32017-10-05 11:40:05 -070065public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback {
Sunny Goyal95abbb32014-08-04 10:53:22 -070066
Sunny Goyaldfaccf62015-05-11 16:30:44 -070067 private static final int DISPLAY_WORKSPACE = 0;
68 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070069 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070070
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080071 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
72
Tony Wickham1237df02017-02-24 08:59:36 -080073
Tony Wickhamf34bee82018-12-03 18:11:39 -080074 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
75 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080076 @Override
77 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080078 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080079 }
80
81 @Override
82 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080083 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080084 bubbleTextView.invalidate();
85 }
86 };
87
Sunny Goyaled7a6932018-04-13 11:41:50 -070088 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
89 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -070090 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070091 public Float get(BubbleTextView bubbleTextView) {
92 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -070093 }
94
95 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070096 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -070097 bubbleTextView.setTextAlpha(alpha);
98 }
99 };
100
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800101 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700102 private Drawable mIcon;
103 private final boolean mCenterVertically;
104
105 private final CheckLongPressHelper mLongPressHelper;
106 private final StylusEventHelper mStylusEventHelper;
107 private final float mSlop;
108
109 private final boolean mLayoutHorizontal;
110 private final int mIconSize;
111
112 @ViewDebug.ExportedProperty(category = "launcher")
113 private boolean mIsIconVisible = true;
114 @ViewDebug.ExportedProperty(category = "launcher")
115 private int mTextColor;
116 @ViewDebug.ExportedProperty(category = "launcher")
117 private float mTextAlpha = 1;
118
Tony4043b052018-08-17 13:47:39 -0700119 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800120 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800121 private DotRenderer mDotRenderer;
122 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
123 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800124 private Animator mDotScaleAnim;
125 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700126
Sunny Goyal4ffec482016-02-09 11:28:52 -0800127 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800128 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800129 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700130 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800131 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700132 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500133
Sunny Goyal34b65272015-03-11 16:56:52 -0700134 private IconLoadRequest mIconLoadRequest;
135
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700137 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138 }
139
140 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700141 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800142 }
143
144 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
145 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800146 mActivity = ActivityContext.lookupContext(context);
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700147 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Adam Cohen96bb7982014-07-07 11:58:56 -0700148
Adam Cohen96bb7982014-07-07 11:58:56 -0700149 TypedArray a = context.obtainStyledAttributes(attrs,
150 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800151 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700152
153 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700154 final int defaultIconSize;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700155 if (display == DISPLAY_WORKSPACE) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700156 DeviceProfile grid = mActivity.getWallpaperDeviceProfile();
Winson Chung44d0aac2015-05-11 18:02:55 -0700157 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700158 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700159 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700160 } else if (display == DISPLAY_ALL_APPS) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700161 DeviceProfile grid = mActivity.getDeviceProfile();
Winson1f064272016-07-18 17:18:02 -0700162 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
163 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700164 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700165 } else if (display == DISPLAY_FOLDER) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700166 DeviceProfile grid = mActivity.getDeviceProfile();
Jon Mirandabf7d8122016-11-03 15:29:29 -0700167 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700168 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700169 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700170 } else {
171 defaultIconSize = mActivity.getDeviceProfile().iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700172 }
Winson1f064272016-07-18 17:18:02 -0700173 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700174
175 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
176 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700177 a.recycle();
178
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800179 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700180 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800181
Tony Wickham8912b042018-11-29 15:28:53 -0800182 mDotParams = new DotRenderer.DrawParams();
183
Sunny Goyal66dccad2018-03-19 12:00:51 -0700184 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700185 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700186 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800187 }
188
Sunny Goyal66dccad2018-03-19 12:00:51 -0700189 @Override
190 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
191 // Disable marques when not focused to that, so that updating text does not cause relayout.
192 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
193 super.onFocusChanged(focused, direction, previouslyFocusedRect);
194 }
195
Jon Miranda52549442017-10-26 11:28:06 -0700196 /**
197 * Resets the view so it can be recycled.
198 */
199 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800200 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800201 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800202 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800203 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800204 mForceHideDot = false;
Jon Miranda52549442017-10-26 11:28:06 -0700205 }
206
Tony Wickhamf34bee82018-12-03 18:11:39 -0800207 private void cancelDotScaleAnim() {
208 if (mDotScaleAnim != null) {
209 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700210 }
211 }
212
Tony Wickhamf34bee82018-12-03 18:11:39 -0800213 private void animateDotScale(float... dotScales) {
214 cancelDotScaleAnim();
215 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
216 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700217 @Override
218 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800219 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700220 }
221 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800222 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700223 }
224
Sunny Goyal95899162019-03-27 16:03:06 -0700225 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
226 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700227 }
228
Sunny Goyal95899162019-03-27 16:03:06 -0700229 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800230 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800231 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700232 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800233 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500234 }
Tony Wickham010d2552017-01-20 08:15:28 -0800235
Tony Wickhamf34bee82018-12-03 18:11:39 -0800236 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800237 }
238
Sunny Goyal508da152014-08-14 10:53:27 -0700239 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800240 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700241
Sunny Goyal95899162019-03-27 16:03:06 -0700242 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700243 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700244
245 // Verify high res immediately
246 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800247
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700248 if (info instanceof PromiseAppInfo) {
249 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
250 applyProgressLevel(promiseAppInfo.level);
251 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800252 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700253 }
254
Sunny Goyal0e08f162015-05-12 11:32:39 -0700255 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800256 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700257 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700258 super.setTag(info);
259
260 // Verify high res immediately
261 verifyHighRes();
262 }
263
Sunny Goyal179249d2017-12-19 16:49:24 -0800264 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700265 FastBitmapDrawable iconDrawable = DrawableFactory.INSTANCE.get(getContext())
266 .newIcon(getContext(), info);
Tony Wickham8912b042018-11-29 15:28:53 -0800267 mDotParams.color = IconPalette.getMutedColor(info.iconColor, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800268
Sunny Goyalf4204382016-07-13 10:46:07 -0700269 setIcon(iconDrawable);
270 setText(info.title);
271 if (info.contentDescription != null) {
272 setContentDescription(info.isDisabled()
273 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
274 : info.contentDescription);
275 }
276 }
277
Winson Chung7501adf2015-06-02 11:24:28 -0700278 /**
279 * Overrides the default long press timeout.
280 */
Tony2ca999c2018-09-24 17:24:51 -0400281 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
282 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700283 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700284
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800285 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800286 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700287 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800288 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800289 }
Sunny Goyal508da152014-08-14 10:53:27 -0700290 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800291
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800292 @Override
293 protected int[] onCreateDrawableState(int extraSpace) {
294 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
295 if (mStayPressed) {
296 mergeDrawableStates(drawableState, STATE_PRESSED);
297 }
298 return drawableState;
299 }
300
Winson Chungb745afb2015-03-02 11:51:23 -0800301 /** Returns the icon for this view. */
302 public Drawable getIcon() {
303 return mIcon;
304 }
305
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700306 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800307 public boolean onTouchEvent(MotionEvent event) {
308 // Call the superclass onTouchEvent first, because sometimes it changes the state to
309 // isPressed() on an ACTION_UP
310 boolean result = super.onTouchEvent(event);
311
Mady Melloref044dd2015-06-02 15:35:07 -0700312 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700313 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700314 mLongPressHelper.cancelLongPress();
315 result = true;
316 }
317
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800318 switch (event.getAction()) {
319 case MotionEvent.ACTION_DOWN:
Mady Melloref044dd2015-06-02 15:35:07 -0700320 // If we're in a stylus button press, don't check for long press.
321 if (!mStylusEventHelper.inStylusButtonPressed()) {
322 mLongPressHelper.postCheckForLongPress();
323 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800324 break;
325 case MotionEvent.ACTION_CANCEL:
326 case MotionEvent.ACTION_UP:
Winson Chung88f33452012-02-23 15:23:44 -0800327 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800328 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400329 case MotionEvent.ACTION_MOVE:
330 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
331 mLongPressHelper.cancelLongPress();
332 }
333 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800334 }
335 return result;
336 }
337
Michael Jurkaddd62e92011-02-16 17:49:14 -0800338 void setStayPressed(boolean stayPressed) {
339 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800340 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800341 }
342
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700343 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800344 public void onVisibilityAggregated(boolean isVisible) {
345 super.onVisibilityAggregated(isVisible);
346 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800347 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800348 }
349 }
350
351 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700352 public void onLauncherResume() {
353 // Reset the pressed state of icon that was locked in the press state while activity
354 // was launching
355 setStayPressed(false);
356 }
357
Sunny Goyal508da152014-08-14 10:53:27 -0700358 void clearPressedBackground() {
359 setPressed(false);
360 setStayPressed(false);
361 }
362
363 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700364 public boolean onKeyUp(int keyCode, KeyEvent event) {
365 // Unlike touch events, keypress event propagate pressed state change immediately,
366 // without waiting for onClickHandler to execute. Disable pressed state changes here
367 // to avoid flickering.
368 mIgnorePressedStateChange = true;
369 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700370 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800371 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700372 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800373 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800374
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700375 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800376 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700377 super.onDraw(canvas);
378 }
379
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800380 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700381 public void onDraw(Canvas canvas) {
382 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800383 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800384 }
385
386 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800387 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800388 * @param canvas The canvas to draw to.
389 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800390 protected void drawDotIfNecessary(Canvas canvas) {
391 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800392 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700393 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800394 final int scrollX = getScrollX();
395 final int scrollY = getScrollY();
396 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800397 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800398 canvas.translate(-scrollX, -scrollY);
399 }
400 }
401
Tony Wickhamf34bee82018-12-03 18:11:39 -0800402 public void forceHideDot(boolean forceHideDot) {
403 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800404 return;
405 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800406 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800407
Tony Wickhamf34bee82018-12-03 18:11:39 -0800408 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800409 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800410 } else if (hasDot()) {
411 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800412 }
413 }
414
Tony Wickhamf34bee82018-12-03 18:11:39 -0800415 private boolean hasDot() {
416 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800417 }
418
419 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700420 getIconBounds(this, outBounds, mIconSize);
421 }
422
423 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
424 int top = iconView.getPaddingTop();
425 int left = (iconView.getWidth() - iconSize) / 2;
426 int right = left + iconSize;
427 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800428 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800429 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400430
431 @Override
Winson1f064272016-07-18 17:18:02 -0700432 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
433 if (mCenterVertically) {
434 Paint.FontMetrics fm = getPaint().getFontMetrics();
435 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
436 (int) Math.ceil(fm.bottom - fm.top);
437 int height = MeasureSpec.getSize(heightMeasureSpec);
438 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
439 getPaddingBottom());
440 }
441 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
442 }
443
444 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700445 public void setTextColor(int color) {
446 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700447 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700448 }
449
Adam Cohen96bb7982014-07-07 11:58:56 -0700450 @Override
451 public void setTextColor(ColorStateList colors) {
452 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700453 if (Float.compare(mTextAlpha, 1) == 0) {
454 super.setTextColor(colors);
455 } else {
456 super.setTextColor(getModifiedColor());
457 }
Adam Cohen477828c2013-09-20 12:05:49 -0700458 }
459
Tony7308cde2017-06-27 22:38:33 -0700460 public boolean shouldTextBeVisible() {
461 // Text should be visible everywhere but the hotseat.
462 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
463 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
464 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
465 }
466
Winson Chung5f8afe62013-08-12 16:19:28 -0700467 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700468 setTextAlpha(visible ? 1 : 0);
469 }
470
471 private void setTextAlpha(float alpha) {
472 mTextAlpha = alpha;
473 super.setTextColor(getModifiedColor());
474 }
475
476 private int getModifiedColor() {
477 if (mTextAlpha == 0) {
478 // Special case to prevent text shadows in high contrast mode
479 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700480 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800481 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700482 }
483
484 /**
485 * Creates an animator to fade the text in or out.
486 * @param fadeIn Whether the text should fade in or fade out.
487 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700488 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700489 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700490 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700491 }
492
Winson Chungaffd7b42010-08-20 15:11:56 -0700493 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800494 public void cancelLongPress() {
495 super.cancelLongPress();
496
497 mLongPressHelper.cancelLongPress();
498 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500499
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800500 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700501 if (getTag() instanceof WorkspaceItemInfo) {
502 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700503 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700504 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700505 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700506 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700507
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700508 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
509 if (preloadDrawable != null && promiseStateChanged) {
510 preloadDrawable.maybePerformFinishedAnimation();
511 }
512 }
513 }
514
515 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
516 if (getTag() instanceof ItemInfoWithIcon) {
517 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700518 if (progressLevel >= 100) {
519 setContentDescription(info.contentDescription != null
520 ? info.contentDescription : "");
521 } else if (progressLevel > 0) {
522 setContentDescription(getContext()
523 .getString(R.string.app_downloading_title, info.title,
524 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
525 } else {
526 setContentDescription(getContext()
527 .getString(R.string.app_waiting_download_title, info.title));
528 }
Winson Chungb745afb2015-03-02 11:51:23 -0800529 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700530 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800531 if (mIcon instanceof PreloadIconDrawable) {
532 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700533 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700534 } else {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700535 preloadDrawable = DrawableFactory.INSTANCE.get(getContext())
536 .newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700537 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700538 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700539 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700540 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700541 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400542 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700543 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400544 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700545
Tony Wickhamf34bee82018-12-03 18:11:39 -0800546 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800547 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800548 boolean wasDotted = mDotInfo != null;
549 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
550 boolean isDotted = mDotInfo != null;
551 float newDotScale = isDotted ? 1f : 0;
Tony Wickham8912b042018-11-29 15:28:53 -0800552 mDotRenderer = mActivity.getDeviceProfile().mDotRenderer;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800553 if (wasDotted || isDotted) {
554 // Animate when a dot is first added or when it is removed.
555 if (animate && (wasDotted ^ isDotted) && isShown()) {
556 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800557 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800558 cancelDotScaleAnim();
559 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800560 invalidate();
561 }
562 }
Tony Wickham305e9202018-01-23 17:46:47 -0800563 if (itemInfo.contentDescription != null) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800564 if (hasDot()) {
565 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800566 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800567 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800568 } else {
569 setContentDescription(itemInfo.contentDescription);
570 }
571 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800572 }
573 }
574
Winson Chungb745afb2015-03-02 11:51:23 -0800575 /**
576 * Sets the icon for this view based on the layout direction.
577 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700578 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700579 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700580 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700581 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700582 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800583 if (mIcon != null) {
584 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
585 }
Tony17b7f9b2017-05-23 12:19:09 -0700586 }
587
588 public void setIconVisible(boolean visible) {
589 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700590 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700591 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700592 }
593
594 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700595 // If we had already set an icon before, disable relayout as the icon size is the
596 // same as before.
597 mDisableRelayout = mIcon != null;
598
599 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800600 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800601 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800602 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700603 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800604 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700605 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800606 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700607
Sunny Goyal69b75642015-05-15 17:00:24 -0700608 @Override
609 public void requestLayout() {
610 if (!mDisableRelayout) {
611 super.requestLayout();
612 }
613 }
614
Sunny Goyal34b65272015-03-11 16:56:52 -0700615 /**
616 * Applies the item info if it is same as what the view is pointing to currently.
617 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800618 @Override
619 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700620 if (getTag() == info) {
621 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700622 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700623
Jon Miranda7f522a22017-07-28 11:56:47 -0700624 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
625 info.iconBitmap.prepareToDraw();
626
Sunny Goyal34b65272015-03-11 16:56:52 -0700627 if (info instanceof AppInfo) {
628 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700629 } else if (info instanceof WorkspaceItemInfo) {
630 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700631 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700632 } else if (info instanceof PackageItemInfo) {
633 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700634 }
Winsonc0880492015-08-21 11:16:27 -0700635
Sunny Goyal69b75642015-05-15 17:00:24 -0700636 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700637 }
638 }
639
640 /**
641 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
642 */
643 public void verifyHighRes() {
644 if (mIconLoadRequest != null) {
645 mIconLoadRequest.cancel();
646 mIconLoadRequest = null;
647 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800648 if (getTag() instanceof ItemInfoWithIcon) {
649 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700650 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800651 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700652 .updateIconInBackground(BubbleTextView.this, info);
653 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700654 }
655 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700656
Jon Miranda47170112017-03-03 14:57:14 -0800657 public int getIconSize() {
658 return mIconSize;
659 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800660}