blob: e8e88c45e1e67019c0d3eae06c6d572c289c0c19 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080018
Sunny Goyal14168432019-10-24 15:59:49 -070019import static com.android.launcher3.FastBitmapDrawable.newIcon;
20import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon;
Sunny Goyal066ace12018-11-05 11:08:31 -080021import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound;
22
Tony4043b052018-08-17 13:47:39 -070023import android.animation.Animator;
24import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080025import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070027import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070028import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070030import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070031import android.graphics.Paint;
Adam Cohend9162062020-03-24 16:35:35 -070032import android.graphics.PointF;
Tony Wickham1237df02017-02-24 08:59:36 -080033import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070034import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080035import android.graphics.drawable.Drawable;
Sunny Goyal66dccad2018-03-19 12:00:51 -070036import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080037import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080038import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070039import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070040import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080041import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070042import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080043import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080044import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070045
Sunny Goyal3dce5f32017-10-05 11:40:05 -070046import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070047import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080048import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080049import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070050import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080051import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070052import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080053import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080054import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080055import com.android.launcher3.icons.IconCache.IconLoadRequest;
56import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Sunny Goyale396abf2020-04-06 15:11:17 -070057import com.android.launcher3.model.data.AppInfo;
58import com.android.launcher3.model.data.ItemInfo;
59import com.android.launcher3.model.data.ItemInfoWithIcon;
60import com.android.launcher3.model.data.PackageItemInfo;
61import com.android.launcher3.model.data.PromiseAppInfo;
62import com.android.launcher3.model.data.WorkspaceItemInfo;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080063import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070064import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070065
Sunny Goyalc469aad2015-10-01 11:24:23 -070066import java.text.NumberFormat;
67
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068/**
69 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
70 * because we want to make the bubble taller than the text and TextView's clip is
71 * too aggressive.
72 */
Jon Miranda9b78e192019-08-30 18:42:01 -070073public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Adam Cohend9162062020-03-24 16:35:35 -070074 IconLabelDotView, DraggableView, Reorderable {
Sunny Goyal95abbb32014-08-04 10:53:22 -070075
Sunny Goyaldfaccf62015-05-11 16:30:44 -070076 private static final int DISPLAY_WORKSPACE = 0;
77 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070078 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070079
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080080 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
81
Adam Cohend9162062020-03-24 16:35:35 -070082 private final PointF mTranslationForReorder = new PointF(0, 0);
83 private float mScaleForReorder = 1f;
Tony Wickham1237df02017-02-24 08:59:36 -080084
Tony Wickhamf34bee82018-12-03 18:11:39 -080085 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
86 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080087 @Override
88 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080089 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080090 }
91
92 @Override
93 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080094 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080095 bubbleTextView.invalidate();
96 }
97 };
98
Sunny Goyaled7a6932018-04-13 11:41:50 -070099 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
100 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -0700101 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700102 public Float get(BubbleTextView bubbleTextView) {
103 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -0700104 }
105
106 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -0700107 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700108 bubbleTextView.setTextAlpha(alpha);
109 }
110 };
111
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800112 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700113 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800114 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700115
Samuel Fufac96fa242019-09-26 23:06:32 -0700116 private final int mDisplay;
117
Sunny Goyaled7a6932018-04-13 11:41:50 -0700118 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700119
120 private final boolean mLayoutHorizontal;
121 private final int mIconSize;
122
123 @ViewDebug.ExportedProperty(category = "launcher")
124 private boolean mIsIconVisible = true;
125 @ViewDebug.ExportedProperty(category = "launcher")
126 private int mTextColor;
127 @ViewDebug.ExportedProperty(category = "launcher")
128 private float mTextAlpha = 1;
129
Tony4043b052018-08-17 13:47:39 -0700130 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800131 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800132 private DotRenderer mDotRenderer;
133 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
134 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800135 private Animator mDotScaleAnim;
136 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700137
Sunny Goyal4ffec482016-02-09 11:28:52 -0800138 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800139 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800140 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700141 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800142 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700143 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500144
Sunny Goyal34b65272015-03-11 16:56:52 -0700145 private IconLoadRequest mIconLoadRequest;
146
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800147 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700148 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800149 }
150
151 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700152 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800153 }
154
155 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
156 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800157 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700158
Adam Cohen96bb7982014-07-07 11:58:56 -0700159 TypedArray a = context.obtainStyledAttributes(attrs,
160 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800161 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700162 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700163
Samuel Fufac96fa242019-09-26 23:06:32 -0700164 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700165 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700166 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700167 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700168 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700169 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700170 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700171 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
172 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700173 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700174 } else if (mDisplay == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700175 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700176 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700177 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyalae6e3182019-04-30 12:04:37 -0700178 } else {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700179 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700180 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700181 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700182
Winson1f064272016-07-18 17:18:02 -0700183 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700184
185 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
186 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700187 a.recycle();
188
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800189 mLongPressHelper = new CheckLongPressHelper(this);
190
Tony Wickham8912b042018-11-29 15:28:53 -0800191 mDotParams = new DotRenderer.DrawParams();
192
Sunny Goyal66dccad2018-03-19 12:00:51 -0700193 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700194 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700195 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800196 }
197
Sunny Goyal66dccad2018-03-19 12:00:51 -0700198 @Override
199 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
200 // Disable marques when not focused to that, so that updating text does not cause relayout.
201 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
202 super.onFocusChanged(focused, direction, previouslyFocusedRect);
203 }
204
Jon Miranda52549442017-10-26 11:28:06 -0700205 /**
206 * Resets the view so it can be recycled.
207 */
208 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800209 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800210 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800211 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800212 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800213 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800214 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700215 }
216
Tony Wickhamf34bee82018-12-03 18:11:39 -0800217 private void cancelDotScaleAnim() {
218 if (mDotScaleAnim != null) {
219 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700220 }
221 }
222
Tony Wickhamf34bee82018-12-03 18:11:39 -0800223 private void animateDotScale(float... dotScales) {
224 cancelDotScaleAnim();
225 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
226 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700227 @Override
228 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800229 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700230 }
231 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800232 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700233 }
234
Sunny Goyal95899162019-03-27 16:03:06 -0700235 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
236 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700237 }
238
Adam Cohen29794c52019-06-21 12:50:30 -0700239 @Override
240 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
241 if (delegate instanceof LauncherAccessibilityDelegate) {
242 super.setAccessibilityDelegate(delegate);
243 } else {
244 // NO-OP
245 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
246 // delegate incorrectly. There are no cases when we shouldn't be using the
247 // LauncherAccessibilityDelegate for BubbleTextView.
248 }
249 }
250
Sunny Goyal95899162019-03-27 16:03:06 -0700251 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800252 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800253 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700254 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800255 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500256 }
Tony Wickham010d2552017-01-20 08:15:28 -0800257
Tony Wickhamf34bee82018-12-03 18:11:39 -0800258 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800259 }
260
Sunny Goyal508da152014-08-14 10:53:27 -0700261 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800262 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700263
Sunny Goyal95899162019-03-27 16:03:06 -0700264 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700265 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700266
267 // Verify high res immediately
268 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800269
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700270 if (info instanceof PromiseAppInfo) {
271 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
272 applyProgressLevel(promiseAppInfo.level);
273 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800274 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700275 }
276
Sunny Goyal0e08f162015-05-12 11:32:39 -0700277 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800278 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700279 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700280 super.setTag(info);
281
282 // Verify high res immediately
283 verifyHighRes();
284 }
285
Sunny Goyal179249d2017-12-19 16:49:24 -0800286 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700287 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700288 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800289
Sunny Goyalf4204382016-07-13 10:46:07 -0700290 setIcon(iconDrawable);
291 setText(info.title);
292 if (info.contentDescription != null) {
293 setContentDescription(info.isDisabled()
294 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
295 : info.contentDescription);
296 }
297 }
298
Winson Chung7501adf2015-06-02 11:24:28 -0700299 /**
300 * Overrides the default long press timeout.
301 */
Tony2ca999c2018-09-24 17:24:51 -0400302 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
303 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700304 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700305
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800306 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800307 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700308 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800309 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800310 }
Sunny Goyal508da152014-08-14 10:53:27 -0700311 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800312
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800313 @Override
314 protected int[] onCreateDrawableState(int extraSpace) {
315 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
316 if (mStayPressed) {
317 mergeDrawableStates(drawableState, STATE_PRESSED);
318 }
319 return drawableState;
320 }
321
Winson Chungb745afb2015-03-02 11:51:23 -0800322 /** Returns the icon for this view. */
323 public Drawable getIcon() {
324 return mIcon;
325 }
326
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700327 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800328 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700329 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700330 if (event.getAction() == MotionEvent.ACTION_DOWN
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700331 && (event.getY() < getPaddingTop()
332 || event.getX() < getPaddingLeft()
333 || event.getY() > getHeight() - getPaddingBottom()
334 || event.getX() > getWidth() - getPaddingRight())) {
335 return false;
336 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700337 if (isLongClickable()) {
338 super.onTouchEvent(event);
339 mLongPressHelper.onTouchEvent(event);
340 // Keep receiving the rest of the events
341 return true;
342 } else {
343 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700344 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800345 }
346
Michael Jurkaddd62e92011-02-16 17:49:14 -0800347 void setStayPressed(boolean stayPressed) {
348 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800349 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800350 }
351
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700352 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800353 public void onVisibilityAggregated(boolean isVisible) {
354 super.onVisibilityAggregated(isVisible);
355 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800356 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800357 }
358 }
359
360 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700361 public void onLauncherResume() {
362 // Reset the pressed state of icon that was locked in the press state while activity
363 // was launching
364 setStayPressed(false);
365 }
366
Sunny Goyal508da152014-08-14 10:53:27 -0700367 void clearPressedBackground() {
368 setPressed(false);
369 setStayPressed(false);
370 }
371
372 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700373 public boolean onKeyUp(int keyCode, KeyEvent event) {
374 // Unlike touch events, keypress event propagate pressed state change immediately,
375 // without waiting for onClickHandler to execute. Disable pressed state changes here
376 // to avoid flickering.
377 mIgnorePressedStateChange = true;
378 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700379 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800380 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700381 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800382 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800383
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700384 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800385 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700386 super.onDraw(canvas);
387 }
388
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800389 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700390 public void onDraw(Canvas canvas) {
391 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800392 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800393 }
394
395 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800396 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800397 * @param canvas The canvas to draw to.
398 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800399 protected void drawDotIfNecessary(Canvas canvas) {
400 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800401 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700402 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800403 final int scrollX = getScrollX();
404 final int scrollY = getScrollY();
405 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800406 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800407 canvas.translate(-scrollX, -scrollY);
408 }
409 }
410
Jon Miranda9b78e192019-08-30 18:42:01 -0700411 @Override
412 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800413 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800414 return;
415 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800416 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800417
Tony Wickhamf34bee82018-12-03 18:11:39 -0800418 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800419 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800420 } else if (hasDot()) {
421 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800422 }
423 }
424
Tony Wickhamf34bee82018-12-03 18:11:39 -0800425 private boolean hasDot() {
426 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800427 }
428
429 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700430 getIconBounds(this, outBounds, mIconSize);
431 }
432
433 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
434 int top = iconView.getPaddingTop();
435 int left = (iconView.getWidth() - iconSize) / 2;
436 int right = left + iconSize;
437 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800438 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800439 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400440
441 @Override
Winson1f064272016-07-18 17:18:02 -0700442 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
443 if (mCenterVertically) {
444 Paint.FontMetrics fm = getPaint().getFontMetrics();
445 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
446 (int) Math.ceil(fm.bottom - fm.top);
447 int height = MeasureSpec.getSize(heightMeasureSpec);
448 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
449 getPaddingBottom());
450 }
451 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
452 }
453
454 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700455 public void setTextColor(int color) {
456 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700457 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700458 }
459
Adam Cohen96bb7982014-07-07 11:58:56 -0700460 @Override
461 public void setTextColor(ColorStateList colors) {
462 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700463 if (Float.compare(mTextAlpha, 1) == 0) {
464 super.setTextColor(colors);
465 } else {
466 super.setTextColor(getModifiedColor());
467 }
Adam Cohen477828c2013-09-20 12:05:49 -0700468 }
469
Tony7308cde2017-06-27 22:38:33 -0700470 public boolean shouldTextBeVisible() {
471 // Text should be visible everywhere but the hotseat.
472 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
473 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700474 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
475 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700476 }
477
Winson Chung5f8afe62013-08-12 16:19:28 -0700478 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700479 setTextAlpha(visible ? 1 : 0);
480 }
481
482 private void setTextAlpha(float alpha) {
483 mTextAlpha = alpha;
484 super.setTextColor(getModifiedColor());
485 }
486
487 private int getModifiedColor() {
488 if (mTextAlpha == 0) {
489 // Special case to prevent text shadows in high contrast mode
490 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700491 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800492 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700493 }
494
495 /**
496 * Creates an animator to fade the text in or out.
497 * @param fadeIn Whether the text should fade in or fade out.
498 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700499 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700500 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700501 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700502 }
503
Winson Chungaffd7b42010-08-20 15:11:56 -0700504 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800505 public void cancelLongPress() {
506 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800507 mLongPressHelper.cancelLongPress();
508 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500509
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800510 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700511 if (getTag() instanceof WorkspaceItemInfo) {
512 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700513 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700514 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700515 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700516 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700517
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700518 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
519 if (preloadDrawable != null && promiseStateChanged) {
520 preloadDrawable.maybePerformFinishedAnimation();
521 }
522 }
523 }
524
525 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
526 if (getTag() instanceof ItemInfoWithIcon) {
527 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700528 if (progressLevel >= 100) {
529 setContentDescription(info.contentDescription != null
530 ? info.contentDescription : "");
531 } else if (progressLevel > 0) {
532 setContentDescription(getContext()
533 .getString(R.string.app_downloading_title, info.title,
534 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
535 } else {
536 setContentDescription(getContext()
537 .getString(R.string.app_waiting_download_title, info.title));
538 }
Winson Chungb745afb2015-03-02 11:51:23 -0800539 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700540 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800541 if (mIcon instanceof PreloadIconDrawable) {
542 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700543 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700544 } else {
Sunny Goyal14168432019-10-24 15:59:49 -0700545 preloadDrawable = newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700546 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700547 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700548 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700549 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700550 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400551 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700552 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400553 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700554
Tony Wickhamf34bee82018-12-03 18:11:39 -0800555 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800556 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800557 boolean wasDotted = mDotInfo != null;
558 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
559 boolean isDotted = mDotInfo != null;
560 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700561 if (mDisplay == DISPLAY_ALL_APPS) {
562 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
563 } else {
564 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
565 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800566 if (wasDotted || isDotted) {
567 // Animate when a dot is first added or when it is removed.
568 if (animate && (wasDotted ^ isDotted) && isShown()) {
569 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800570 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800571 cancelDotScaleAnim();
572 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800573 invalidate();
574 }
575 }
Tony Wickham305e9202018-01-23 17:46:47 -0800576 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700577 if (itemInfo.isDisabled()) {
578 setContentDescription(getContext().getString(R.string.disabled_app_label,
579 itemInfo.contentDescription));
580 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800581 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800582 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800583 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800584 } else {
585 setContentDescription(itemInfo.contentDescription);
586 }
587 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800588 }
589 }
590
Winson Chungb745afb2015-03-02 11:51:23 -0800591 /**
592 * Sets the icon for this view based on the layout direction.
593 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700594 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700595 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700596 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700597 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700598 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800599 if (mIcon != null) {
600 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
601 }
Tony17b7f9b2017-05-23 12:19:09 -0700602 }
603
Jon Miranda9b78e192019-08-30 18:42:01 -0700604 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700605 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.
Sunny Goyal3808a692019-10-25 13:41:28 -0700642 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700643
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 }
Adam Cohen65086992020-02-19 08:40:49 -0800677
Adam Cohend9162062020-03-24 16:35:35 -0700678 public void setReorderOffset(float x, float y) {
679 mTranslationForReorder.set(x, y);
680 super.setTranslationX(x);
681 super.setTranslationY(y);
682 }
683
684 public void getReorderOffset(PointF offset) {
685 offset.set(mTranslationForReorder);
686 }
687
688 public void setReorderScale(float scale) {
689 mScaleForReorder = scale;
690 super.setScaleX(scale);
691 super.setScaleY(scale);
692 }
693
694 public float getReorderScale() {
695 return mScaleForReorder;
696 }
697
698 public View getView() {
699 return this;
700 }
701
Adam Cohen65086992020-02-19 08:40:49 -0800702 @Override
703 public int getViewType() {
704 return DRAGGABLE_ICON;
705 }
706
707 @Override
708 public void getVisualDragBounds(Rect bounds) {
709 DeviceProfile grid = mActivity.getDeviceProfile();
710 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
711 }
712
713 @Override
714 public void prepareDrawDragView() {
715 if (getIcon() instanceof FastBitmapDrawable) {
716 FastBitmapDrawable icon = (FastBitmapDrawable) getIcon();
717 icon.setScale(1f);
718 }
719 setForceHideDot(true);
720 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800721}