blob: 8291acc5909fb5b2708d1ac08f9f8e774b7f8c9a [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;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080049import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080050import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080051import com.android.launcher3.icons.IconCache.IconLoadRequest;
52import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070053import com.android.launcher3.model.PackageItemInfo;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080054import com.android.launcher3.views.ActivityContext;
Sunny Goyal34b65272015-03-11 16:56:52 -070055
Sunny Goyalc469aad2015-10-01 11:24:23 -070056import java.text.NumberFormat;
57
The Android Open Source Project31dd5032009-03-03 19:32:27 -080058/**
59 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
60 * because we want to make the bubble taller than the text and TextView's clip is
61 * too aggressive.
62 */
Sunny Goyal3dce5f32017-10-05 11:40:05 -070063public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback {
Sunny Goyal95abbb32014-08-04 10:53:22 -070064
Sunny Goyaldfaccf62015-05-11 16:30:44 -070065 private static final int DISPLAY_WORKSPACE = 0;
66 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070067 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070068
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080069 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
70
Tony Wickham1237df02017-02-24 08:59:36 -080071
Tony Wickhamf34bee82018-12-03 18:11:39 -080072 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
73 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080074 @Override
75 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080076 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080077 }
78
79 @Override
80 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080081 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080082 bubbleTextView.invalidate();
83 }
84 };
85
Sunny Goyaled7a6932018-04-13 11:41:50 -070086 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
87 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -070088 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070089 public Float get(BubbleTextView bubbleTextView) {
90 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -070091 }
92
93 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070094 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -070095 bubbleTextView.setTextAlpha(alpha);
96 }
97 };
98
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080099 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700100 private Drawable mIcon;
101 private final boolean mCenterVertically;
102
103 private final CheckLongPressHelper mLongPressHelper;
104 private final StylusEventHelper mStylusEventHelper;
105 private final float mSlop;
106
107 private final boolean mLayoutHorizontal;
108 private final int mIconSize;
109
110 @ViewDebug.ExportedProperty(category = "launcher")
111 private boolean mIsIconVisible = true;
112 @ViewDebug.ExportedProperty(category = "launcher")
113 private int mTextColor;
114 @ViewDebug.ExportedProperty(category = "launcher")
115 private float mTextAlpha = 1;
116
Tony4043b052018-08-17 13:47:39 -0700117 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800118 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800119 private DotRenderer mDotRenderer;
120 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
121 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800122 private Animator mDotScaleAnim;
123 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700124
Sunny Goyal4ffec482016-02-09 11:28:52 -0800125 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800126 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800127 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700128 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800129 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700130 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500131
Sunny Goyal34b65272015-03-11 16:56:52 -0700132 private IconLoadRequest mIconLoadRequest;
133
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700135 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800136 }
137
138 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700139 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800140 }
141
142 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
143 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800144 mActivity = ActivityContext.lookupContext(context);
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700145 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Adam Cohen96bb7982014-07-07 11:58:56 -0700146
Adam Cohen96bb7982014-07-07 11:58:56 -0700147 TypedArray a = context.obtainStyledAttributes(attrs,
148 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800149 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700150
151 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700152 final int defaultIconSize;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700153 if (display == DISPLAY_WORKSPACE) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700154 DeviceProfile grid = mActivity.getWallpaperDeviceProfile();
Winson Chung44d0aac2015-05-11 18:02:55 -0700155 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700156 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700157 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700158 } else if (display == DISPLAY_ALL_APPS) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700159 DeviceProfile grid = mActivity.getDeviceProfile();
Winson1f064272016-07-18 17:18:02 -0700160 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
161 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700162 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700163 } else if (display == DISPLAY_FOLDER) {
Sunny Goyalae6e3182019-04-30 12:04:37 -0700164 DeviceProfile grid = mActivity.getDeviceProfile();
Jon Mirandabf7d8122016-11-03 15:29:29 -0700165 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700166 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700167 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700168 } else {
169 defaultIconSize = mActivity.getDeviceProfile().iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700170 }
Winson1f064272016-07-18 17:18:02 -0700171 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700172
173 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
174 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700175 a.recycle();
176
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800177 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700178 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800179
Tony Wickham8912b042018-11-29 15:28:53 -0800180 mDotParams = new DotRenderer.DrawParams();
181
Sunny Goyal66dccad2018-03-19 12:00:51 -0700182 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700183 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700184 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800185 }
186
Sunny Goyal66dccad2018-03-19 12:00:51 -0700187 @Override
188 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
189 // Disable marques when not focused to that, so that updating text does not cause relayout.
190 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
191 super.onFocusChanged(focused, direction, previouslyFocusedRect);
192 }
193
Jon Miranda52549442017-10-26 11:28:06 -0700194 /**
195 * Resets the view so it can be recycled.
196 */
197 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800198 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800199 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800200 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800201 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800202 mForceHideDot = false;
Jon Miranda52549442017-10-26 11:28:06 -0700203 }
204
Tony Wickhamf34bee82018-12-03 18:11:39 -0800205 private void cancelDotScaleAnim() {
206 if (mDotScaleAnim != null) {
207 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700208 }
209 }
210
Tony Wickhamf34bee82018-12-03 18:11:39 -0800211 private void animateDotScale(float... dotScales) {
212 cancelDotScaleAnim();
213 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
214 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700215 @Override
216 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800217 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700218 }
219 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800220 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700221 }
222
Sunny Goyal95899162019-03-27 16:03:06 -0700223 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
224 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700225 }
226
Sunny Goyal95899162019-03-27 16:03:06 -0700227 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800228 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800229 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700230 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800231 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500232 }
Tony Wickham010d2552017-01-20 08:15:28 -0800233
Tony Wickhamf34bee82018-12-03 18:11:39 -0800234 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800235 }
236
Sunny Goyal508da152014-08-14 10:53:27 -0700237 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800238 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700239
Sunny Goyal95899162019-03-27 16:03:06 -0700240 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700241 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700242
243 // Verify high res immediately
244 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800245
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700246 if (info instanceof PromiseAppInfo) {
247 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
248 applyProgressLevel(promiseAppInfo.level);
249 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800250 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700251 }
252
Sunny Goyal0e08f162015-05-12 11:32:39 -0700253 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800254 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700255 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700256 super.setTag(info);
257
258 // Verify high res immediately
259 verifyHighRes();
260 }
261
Sunny Goyal179249d2017-12-19 16:49:24 -0800262 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700263 FastBitmapDrawable iconDrawable = DrawableFactory.INSTANCE.get(getContext())
264 .newIcon(getContext(), info);
Tony Wickham8912b042018-11-29 15:28:53 -0800265 mDotParams.color = IconPalette.getMutedColor(info.iconColor, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800266
Sunny Goyalf4204382016-07-13 10:46:07 -0700267 setIcon(iconDrawable);
268 setText(info.title);
269 if (info.contentDescription != null) {
270 setContentDescription(info.isDisabled()
271 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
272 : info.contentDescription);
273 }
274 }
275
Winson Chung7501adf2015-06-02 11:24:28 -0700276 /**
277 * Overrides the default long press timeout.
278 */
Tony2ca999c2018-09-24 17:24:51 -0400279 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
280 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700281 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700282
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800283 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800284 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700285 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800286 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800287 }
Sunny Goyal508da152014-08-14 10:53:27 -0700288 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800289
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800290 @Override
291 protected int[] onCreateDrawableState(int extraSpace) {
292 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
293 if (mStayPressed) {
294 mergeDrawableStates(drawableState, STATE_PRESSED);
295 }
296 return drawableState;
297 }
298
Winson Chungb745afb2015-03-02 11:51:23 -0800299 /** Returns the icon for this view. */
300 public Drawable getIcon() {
301 return mIcon;
302 }
303
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700304 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800305 public boolean onTouchEvent(MotionEvent event) {
306 // Call the superclass onTouchEvent first, because sometimes it changes the state to
307 // isPressed() on an ACTION_UP
308 boolean result = super.onTouchEvent(event);
309
Mady Melloref044dd2015-06-02 15:35:07 -0700310 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700311 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700312 mLongPressHelper.cancelLongPress();
313 result = true;
314 }
315
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800316 switch (event.getAction()) {
317 case MotionEvent.ACTION_DOWN:
Mady Melloref044dd2015-06-02 15:35:07 -0700318 // If we're in a stylus button press, don't check for long press.
319 if (!mStylusEventHelper.inStylusButtonPressed()) {
320 mLongPressHelper.postCheckForLongPress();
321 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800322 break;
323 case MotionEvent.ACTION_CANCEL:
324 case MotionEvent.ACTION_UP:
Winson Chung88f33452012-02-23 15:23:44 -0800325 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800326 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400327 case MotionEvent.ACTION_MOVE:
328 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
329 mLongPressHelper.cancelLongPress();
330 }
331 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800332 }
333 return result;
334 }
335
Michael Jurkaddd62e92011-02-16 17:49:14 -0800336 void setStayPressed(boolean stayPressed) {
337 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800338 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800339 }
340
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700341 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800342 public void onVisibilityAggregated(boolean isVisible) {
343 super.onVisibilityAggregated(isVisible);
344 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800345 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800346 }
347 }
348
349 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700350 public void onLauncherResume() {
351 // Reset the pressed state of icon that was locked in the press state while activity
352 // was launching
353 setStayPressed(false);
354 }
355
Sunny Goyal508da152014-08-14 10:53:27 -0700356 void clearPressedBackground() {
357 setPressed(false);
358 setStayPressed(false);
359 }
360
361 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700362 public boolean onKeyUp(int keyCode, KeyEvent event) {
363 // Unlike touch events, keypress event propagate pressed state change immediately,
364 // without waiting for onClickHandler to execute. Disable pressed state changes here
365 // to avoid flickering.
366 mIgnorePressedStateChange = true;
367 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700368 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800369 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700370 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800371 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800372
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700373 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800374 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700375 super.onDraw(canvas);
376 }
377
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800378 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700379 public void onDraw(Canvas canvas) {
380 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800381 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800382 }
383
384 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800385 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800386 * @param canvas The canvas to draw to.
387 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800388 protected void drawDotIfNecessary(Canvas canvas) {
389 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800390 getIconBounds(mDotParams.iconBounds);
391 mDotParams.spaceForOffset.set((getWidth() - mIconSize) / 2, getPaddingTop());
Tony Wickham1237df02017-02-24 08:59:36 -0800392 final int scrollX = getScrollX();
393 final int scrollY = getScrollY();
394 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800395 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800396 canvas.translate(-scrollX, -scrollY);
397 }
398 }
399
Tony Wickhamf34bee82018-12-03 18:11:39 -0800400 public void forceHideDot(boolean forceHideDot) {
401 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800402 return;
403 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800404 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800405
Tony Wickhamf34bee82018-12-03 18:11:39 -0800406 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800407 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800408 } else if (hasDot()) {
409 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800410 }
411 }
412
Tony Wickhamf34bee82018-12-03 18:11:39 -0800413 private boolean hasDot() {
414 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800415 }
416
417 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700418 getIconBounds(this, outBounds, mIconSize);
419 }
420
421 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
422 int top = iconView.getPaddingTop();
423 int left = (iconView.getWidth() - iconSize) / 2;
424 int right = left + iconSize;
425 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800426 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800427 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400428
429 @Override
Winson1f064272016-07-18 17:18:02 -0700430 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
431 if (mCenterVertically) {
432 Paint.FontMetrics fm = getPaint().getFontMetrics();
433 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
434 (int) Math.ceil(fm.bottom - fm.top);
435 int height = MeasureSpec.getSize(heightMeasureSpec);
436 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
437 getPaddingBottom());
438 }
439 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
440 }
441
442 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700443 public void setTextColor(int color) {
444 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700445 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700446 }
447
Adam Cohen96bb7982014-07-07 11:58:56 -0700448 @Override
449 public void setTextColor(ColorStateList colors) {
450 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700451 if (Float.compare(mTextAlpha, 1) == 0) {
452 super.setTextColor(colors);
453 } else {
454 super.setTextColor(getModifiedColor());
455 }
Adam Cohen477828c2013-09-20 12:05:49 -0700456 }
457
Tony7308cde2017-06-27 22:38:33 -0700458 public boolean shouldTextBeVisible() {
459 // Text should be visible everywhere but the hotseat.
460 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
461 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
462 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
463 }
464
Winson Chung5f8afe62013-08-12 16:19:28 -0700465 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700466 setTextAlpha(visible ? 1 : 0);
467 }
468
469 private void setTextAlpha(float alpha) {
470 mTextAlpha = alpha;
471 super.setTextColor(getModifiedColor());
472 }
473
474 private int getModifiedColor() {
475 if (mTextAlpha == 0) {
476 // Special case to prevent text shadows in high contrast mode
477 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700478 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800479 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700480 }
481
482 /**
483 * Creates an animator to fade the text in or out.
484 * @param fadeIn Whether the text should fade in or fade out.
485 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700486 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700487 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700488 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700489 }
490
Winson Chungaffd7b42010-08-20 15:11:56 -0700491 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800492 public void cancelLongPress() {
493 super.cancelLongPress();
494
495 mLongPressHelper.cancelLongPress();
496 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500497
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800498 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700499 if (getTag() instanceof WorkspaceItemInfo) {
500 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700501 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700502 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700503 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700504 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700505
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700506 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
507 if (preloadDrawable != null && promiseStateChanged) {
508 preloadDrawable.maybePerformFinishedAnimation();
509 }
510 }
511 }
512
513 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
514 if (getTag() instanceof ItemInfoWithIcon) {
515 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700516 if (progressLevel >= 100) {
517 setContentDescription(info.contentDescription != null
518 ? info.contentDescription : "");
519 } else if (progressLevel > 0) {
520 setContentDescription(getContext()
521 .getString(R.string.app_downloading_title, info.title,
522 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
523 } else {
524 setContentDescription(getContext()
525 .getString(R.string.app_waiting_download_title, info.title));
526 }
Winson Chungb745afb2015-03-02 11:51:23 -0800527 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700528 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800529 if (mIcon instanceof PreloadIconDrawable) {
530 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700531 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700532 } else {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700533 preloadDrawable = DrawableFactory.INSTANCE.get(getContext())
534 .newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700535 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700536 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700537 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700538 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700539 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400540 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700541 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400542 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700543
Tony Wickhamf34bee82018-12-03 18:11:39 -0800544 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800545 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800546 boolean wasDotted = mDotInfo != null;
547 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
548 boolean isDotted = mDotInfo != null;
549 float newDotScale = isDotted ? 1f : 0;
Tony Wickham8912b042018-11-29 15:28:53 -0800550 mDotRenderer = mActivity.getDeviceProfile().mDotRenderer;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800551 if (wasDotted || isDotted) {
552 // Animate when a dot is first added or when it is removed.
553 if (animate && (wasDotted ^ isDotted) && isShown()) {
554 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800555 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800556 cancelDotScaleAnim();
557 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800558 invalidate();
559 }
560 }
Tony Wickham305e9202018-01-23 17:46:47 -0800561 if (itemInfo.contentDescription != null) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800562 if (hasDot()) {
563 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800564 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800565 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800566 } else {
567 setContentDescription(itemInfo.contentDescription);
568 }
569 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800570 }
571 }
572
Winson Chungb745afb2015-03-02 11:51:23 -0800573 /**
574 * Sets the icon for this view based on the layout direction.
575 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700576 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700577 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700578 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700579 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700580 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800581 if (mIcon != null) {
582 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
583 }
Tony17b7f9b2017-05-23 12:19:09 -0700584 }
585
586 public void setIconVisible(boolean visible) {
587 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700588 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700589 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700590 }
591
592 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700593 // If we had already set an icon before, disable relayout as the icon size is the
594 // same as before.
595 mDisableRelayout = mIcon != null;
596
597 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800598 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800599 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800600 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700601 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800602 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700603 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800604 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700605
Sunny Goyal69b75642015-05-15 17:00:24 -0700606 @Override
607 public void requestLayout() {
608 if (!mDisableRelayout) {
609 super.requestLayout();
610 }
611 }
612
Sunny Goyal34b65272015-03-11 16:56:52 -0700613 /**
614 * Applies the item info if it is same as what the view is pointing to currently.
615 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800616 @Override
617 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700618 if (getTag() == info) {
619 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700620 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700621
Jon Miranda7f522a22017-07-28 11:56:47 -0700622 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
623 info.iconBitmap.prepareToDraw();
624
Sunny Goyal34b65272015-03-11 16:56:52 -0700625 if (info instanceof AppInfo) {
626 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700627 } else if (info instanceof WorkspaceItemInfo) {
628 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700629 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700630 } else if (info instanceof PackageItemInfo) {
631 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700632 }
Winsonc0880492015-08-21 11:16:27 -0700633
Sunny Goyal69b75642015-05-15 17:00:24 -0700634 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700635 }
636 }
637
638 /**
639 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
640 */
641 public void verifyHighRes() {
642 if (mIconLoadRequest != null) {
643 mIconLoadRequest.cancel();
644 mIconLoadRequest = null;
645 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800646 if (getTag() instanceof ItemInfoWithIcon) {
647 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700648 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800649 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700650 .updateIconInBackground(BubbleTextView.this, info);
651 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700652 }
653 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700654
Jon Miranda47170112017-03-03 14:57:14 -0800655 public int getIconSize() {
656 return mIconSize;
657 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800658}