blob: 921e8ac14d82815b93e0fd2351f5cbb69782fbf3 [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;
Tony Wickham1237df02017-02-24 08:59:36 -080032import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070033import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080034import android.graphics.drawable.Drawable;
Sunny Goyal66dccad2018-03-19 12:00:51 -070035import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080036import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080037import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070038import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070039import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080040import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070041import android.view.View;
Sunny Goyal4ffec482016-02-09 11:28:52 -080042import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080043import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070044
Sunny Goyal3dce5f32017-10-05 11:40:05 -070045import com.android.launcher3.Launcher.OnResumeCallback;
Adam Cohen29794c52019-06-21 12:50:30 -070046import com.android.launcher3.accessibility.LauncherAccessibilityDelegate;
Tony Wickhamf34bee82018-12-03 18:11:39 -080047import com.android.launcher3.dot.DotInfo;
Adam Cohen65086992020-02-19 08:40:49 -080048import com.android.launcher3.dragndrop.DraggableView;
Tony7308cde2017-06-27 22:38:33 -070049import com.android.launcher3.folder.FolderIcon;
Tony Wickham1237df02017-02-24 08:59:36 -080050import com.android.launcher3.graphics.IconPalette;
Tony Wickhame1cb93f2019-05-03 11:27:32 -070051import com.android.launcher3.graphics.IconShape;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080052import com.android.launcher3.graphics.PreloadIconDrawable;
Tony Wickham8912b042018-11-29 15:28:53 -080053import com.android.launcher3.icons.DotRenderer;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080054import com.android.launcher3.icons.IconCache.IconLoadRequest;
55import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070056import com.android.launcher3.model.PackageItemInfo;
Sunny Goyalfe8e4a92018-11-13 19:43:57 -080057import com.android.launcher3.views.ActivityContext;
Jon Miranda9b78e192019-08-30 18:42:01 -070058import com.android.launcher3.views.IconLabelDotView;
Sunny Goyal34b65272015-03-11 16:56:52 -070059
Sunny Goyalc469aad2015-10-01 11:24:23 -070060import java.text.NumberFormat;
61
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062/**
63 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
64 * because we want to make the bubble taller than the text and TextView's clip is
65 * too aggressive.
66 */
Jon Miranda9b78e192019-08-30 18:42:01 -070067public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback,
Adam Cohen65086992020-02-19 08:40:49 -080068 IconLabelDotView, DraggableView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070069
Sunny Goyaldfaccf62015-05-11 16:30:44 -070070 private static final int DISPLAY_WORKSPACE = 0;
71 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070072 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070073
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080074 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
75
Tony Wickham1237df02017-02-24 08:59:36 -080076
Tony Wickhamf34bee82018-12-03 18:11:39 -080077 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY
78 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") {
Tony Wickham1237df02017-02-24 08:59:36 -080079 @Override
80 public Float get(BubbleTextView bubbleTextView) {
Tony Wickham8912b042018-11-29 15:28:53 -080081 return bubbleTextView.mDotParams.scale;
Tony Wickham1237df02017-02-24 08:59:36 -080082 }
83
84 @Override
85 public void set(BubbleTextView bubbleTextView, Float value) {
Tony Wickham8912b042018-11-29 15:28:53 -080086 bubbleTextView.mDotParams.scale = value;
Tony Wickham1237df02017-02-24 08:59:36 -080087 bubbleTextView.invalidate();
88 }
89 };
90
Sunny Goyaled7a6932018-04-13 11:41:50 -070091 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY
92 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
Tony8f402802017-06-16 17:24:54 -070093 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070094 public Float get(BubbleTextView bubbleTextView) {
95 return bubbleTextView.mTextAlpha;
Tony8f402802017-06-16 17:24:54 -070096 }
97
98 @Override
Sunny Goyaled7a6932018-04-13 11:41:50 -070099 public void set(BubbleTextView bubbleTextView, Float alpha) {
Tony8f402802017-06-16 17:24:54 -0700100 bubbleTextView.setTextAlpha(alpha);
101 }
102 };
103
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800104 private final ActivityContext mActivity;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700105 private Drawable mIcon;
Adam Cohen65086992020-02-19 08:40:49 -0800106 private boolean mCenterVertically;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700107
Samuel Fufac96fa242019-09-26 23:06:32 -0700108 private final int mDisplay;
109
Sunny Goyaled7a6932018-04-13 11:41:50 -0700110 private final CheckLongPressHelper mLongPressHelper;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700111
112 private final boolean mLayoutHorizontal;
113 private final int mIconSize;
114
115 @ViewDebug.ExportedProperty(category = "launcher")
116 private boolean mIsIconVisible = true;
117 @ViewDebug.ExportedProperty(category = "launcher")
118 private int mTextColor;
119 @ViewDebug.ExportedProperty(category = "launcher")
120 private float mTextAlpha = 1;
121
Tony4043b052018-08-17 13:47:39 -0700122 @ViewDebug.ExportedProperty(category = "launcher")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800123 private DotInfo mDotInfo;
Tony Wickham8912b042018-11-29 15:28:53 -0800124 private DotRenderer mDotRenderer;
125 @ViewDebug.ExportedProperty(category = "launcher", deepExport = true)
126 private DotRenderer.DrawParams mDotParams;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800127 private Animator mDotScaleAnim;
128 private boolean mForceHideDot;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700129
Sunny Goyal4ffec482016-02-09 11:28:52 -0800130 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800131 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800132 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700133 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800134 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700135 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500136
Sunny Goyal34b65272015-03-11 16:56:52 -0700137 private IconLoadRequest mIconLoadRequest;
138
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700140 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800141 }
142
143 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700144 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800145 }
146
147 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
148 super(context, attrs, defStyle);
Sunny Goyalfe8e4a92018-11-13 19:43:57 -0800149 mActivity = ActivityContext.lookupContext(context);
Adam Cohen96bb7982014-07-07 11:58:56 -0700150
Adam Cohen96bb7982014-07-07 11:58:56 -0700151 TypedArray a = context.obtainStyledAttributes(attrs,
152 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800153 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyalc4d32012020-04-03 17:10:11 -0700154 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700155
Samuel Fufac96fa242019-09-26 23:06:32 -0700156 mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700157 final int defaultIconSize;
Samuel Fufac96fa242019-09-26 23:06:32 -0700158 if (mDisplay == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700159 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700160 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyalae6e3182019-04-30 12:04:37 -0700161 defaultIconSize = grid.iconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700162 } else if (mDisplay == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700163 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
164 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700165 defaultIconSize = grid.allAppsIconSizePx;
Samuel Fufac96fa242019-09-26 23:06:32 -0700166 } else if (mDisplay == DISPLAY_FOLDER) {
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 {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700171 // widget_selection or shortcut_popup
Sunny Goyalc4d32012020-04-03 17:10:11 -0700172 defaultIconSize = grid.iconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700173 }
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700174
Winson1f064272016-07-18 17:18:02 -0700175 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700176
177 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
178 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700179 a.recycle();
180
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800181 mLongPressHelper = new CheckLongPressHelper(this);
182
Tony Wickham8912b042018-11-29 15:28:53 -0800183 mDotParams = new DotRenderer.DrawParams();
184
Sunny Goyal66dccad2018-03-19 12:00:51 -0700185 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700186 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700187 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800188 }
189
Sunny Goyal66dccad2018-03-19 12:00:51 -0700190 @Override
191 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
192 // Disable marques when not focused to that, so that updating text does not cause relayout.
193 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
194 super.onFocusChanged(focused, direction, previouslyFocusedRect);
195 }
196
Jon Miranda52549442017-10-26 11:28:06 -0700197 /**
198 * Resets the view so it can be recycled.
199 */
200 public void reset() {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800201 mDotInfo = null;
Tony Wickham8912b042018-11-29 15:28:53 -0800202 mDotParams.color = Color.TRANSPARENT;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800203 cancelDotScaleAnim();
Tony Wickham8912b042018-11-29 15:28:53 -0800204 mDotParams.scale = 0f;
Tony Wickhamf34bee82018-12-03 18:11:39 -0800205 mForceHideDot = false;
Samuel Fufaba6b47f2019-11-07 10:27:41 -0800206 setBackground(null);
Jon Miranda52549442017-10-26 11:28:06 -0700207 }
208
Tony Wickhamf34bee82018-12-03 18:11:39 -0800209 private void cancelDotScaleAnim() {
210 if (mDotScaleAnim != null) {
211 mDotScaleAnim.cancel();
Tony4043b052018-08-17 13:47:39 -0700212 }
213 }
214
Tony Wickhamf34bee82018-12-03 18:11:39 -0800215 private void animateDotScale(float... dotScales) {
216 cancelDotScaleAnim();
217 mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales);
218 mDotScaleAnim.addListener(new AnimatorListenerAdapter() {
Tony4043b052018-08-17 13:47:39 -0700219 @Override
220 public void onAnimationEnd(Animator animation) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800221 mDotScaleAnim = null;
Tony4043b052018-08-17 13:47:39 -0700222 }
223 });
Tony Wickhamf34bee82018-12-03 18:11:39 -0800224 mDotScaleAnim.start();
Tony4043b052018-08-17 13:47:39 -0700225 }
226
Sunny Goyal95899162019-03-27 16:03:06 -0700227 public void applyFromWorkspaceItem(WorkspaceItemInfo info) {
228 applyFromWorkspaceItem(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700229 }
230
Adam Cohen29794c52019-06-21 12:50:30 -0700231 @Override
232 public void setAccessibilityDelegate(AccessibilityDelegate delegate) {
233 if (delegate instanceof LauncherAccessibilityDelegate) {
234 super.setAccessibilityDelegate(delegate);
235 } else {
236 // NO-OP
237 // Workaround for b/129745295 where RecyclerView is setting our Accessibility
238 // delegate incorrectly. There are no cases when we shouldn't be using the
239 // LauncherAccessibilityDelegate for BubbleTextView.
240 }
241 }
242
Sunny Goyal95899162019-03-27 16:03:06 -0700243 public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800244 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800245 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700246 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800247 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500248 }
Tony Wickham010d2552017-01-20 08:15:28 -0800249
Tony Wickhamf34bee82018-12-03 18:11:39 -0800250 applyDotState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800251 }
252
Sunny Goyal508da152014-08-14 10:53:27 -0700253 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800254 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700255
Sunny Goyal95899162019-03-27 16:03:06 -0700256 // We don't need to check the info since it's not a WorkspaceItemInfo
Winson Chung888b3a12015-03-13 11:14:16 -0700257 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700258
259 // Verify high res immediately
260 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800261
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700262 if (info instanceof PromiseAppInfo) {
263 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
264 applyProgressLevel(promiseAppInfo.level);
265 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800266 applyDotState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700267 }
268
Sunny Goyal0e08f162015-05-12 11:32:39 -0700269 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800270 applyIconAndLabel(info);
Sunny Goyal95899162019-03-27 16:03:06 -0700271 // We don't need to check the info since it's not a WorkspaceItemInfo
Sunny Goyal0e08f162015-05-12 11:32:39 -0700272 super.setTag(info);
273
274 // Verify high res immediately
275 verifyHighRes();
276 }
277
Sunny Goyal179249d2017-12-19 16:49:24 -0800278 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal14168432019-10-24 15:59:49 -0700279 FastBitmapDrawable iconDrawable = newIcon(getContext(), info);
Sunny Goyal3808a692019-10-25 13:41:28 -0700280 mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f);
Sunny Goyal179249d2017-12-19 16:49:24 -0800281
Sunny Goyalf4204382016-07-13 10:46:07 -0700282 setIcon(iconDrawable);
283 setText(info.title);
284 if (info.contentDescription != null) {
285 setContentDescription(info.isDisabled()
286 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
287 : info.contentDescription);
288 }
289 }
290
Winson Chung7501adf2015-06-02 11:24:28 -0700291 /**
292 * Overrides the default long press timeout.
293 */
Tony2ca999c2018-09-24 17:24:51 -0400294 public void setLongPressTimeoutFactor(float longPressTimeoutFactor) {
295 mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor);
Winson Chung7501adf2015-06-02 11:24:28 -0700296 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700297
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800298 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800299 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700300 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800301 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800302 }
Sunny Goyal508da152014-08-14 10:53:27 -0700303 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800304
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800305 @Override
306 protected int[] onCreateDrawableState(int extraSpace) {
307 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
308 if (mStayPressed) {
309 mergeDrawableStates(drawableState, STATE_PRESSED);
310 }
311 return drawableState;
312 }
313
Winson Chungb745afb2015-03-02 11:51:23 -0800314 /** Returns the icon for this view. */
315 public Drawable getIcon() {
316 return mIcon;
317 }
318
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700319 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800320 public boolean onTouchEvent(MotionEvent event) {
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700321 // ignore events if they happen in padding area
Sunny Goyal17feee82020-03-24 13:55:15 -0700322 if (event.getAction() == MotionEvent.ACTION_DOWN
Samuel Fufa4a1d9b12019-09-19 17:28:00 -0700323 && (event.getY() < getPaddingTop()
324 || event.getX() < getPaddingLeft()
325 || event.getY() > getHeight() - getPaddingBottom()
326 || event.getX() > getWidth() - getPaddingRight())) {
327 return false;
328 }
Sunny Goyal17feee82020-03-24 13:55:15 -0700329 if (isLongClickable()) {
330 super.onTouchEvent(event);
331 mLongPressHelper.onTouchEvent(event);
332 // Keep receiving the rest of the events
333 return true;
334 } else {
335 return super.onTouchEvent(event);
Mady Melloref044dd2015-06-02 15:35:07 -0700336 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800337 }
338
Michael Jurkaddd62e92011-02-16 17:49:14 -0800339 void setStayPressed(boolean stayPressed) {
340 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800341 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800342 }
343
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700344 @Override
Hyunyoung Songef468d82019-01-03 01:02:43 -0800345 public void onVisibilityAggregated(boolean isVisible) {
346 super.onVisibilityAggregated(isVisible);
347 if (mIcon != null) {
Hyunyoung Songa2373852019-01-04 12:01:32 -0800348 mIcon.setVisible(isVisible, false);
Hyunyoung Songef468d82019-01-03 01:02:43 -0800349 }
350 }
351
352 @Override
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700353 public void onLauncherResume() {
354 // Reset the pressed state of icon that was locked in the press state while activity
355 // was launching
356 setStayPressed(false);
357 }
358
Sunny Goyal508da152014-08-14 10:53:27 -0700359 void clearPressedBackground() {
360 setPressed(false);
361 setStayPressed(false);
362 }
363
364 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700365 public boolean onKeyUp(int keyCode, KeyEvent event) {
366 // Unlike touch events, keypress event propagate pressed state change immediately,
367 // without waiting for onClickHandler to execute. Disable pressed state changes here
368 // to avoid flickering.
369 mIgnorePressedStateChange = true;
370 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700371 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800372 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700373 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800374 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800375
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700376 @SuppressWarnings("wrongcall")
Tony Wickhamf34bee82018-12-03 18:11:39 -0800377 protected void drawWithoutDot(Canvas canvas) {
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700378 super.onDraw(canvas);
379 }
380
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800381 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700382 public void onDraw(Canvas canvas) {
383 super.onDraw(canvas);
Tony Wickhamf34bee82018-12-03 18:11:39 -0800384 drawDotIfNecessary(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800385 }
386
387 /**
Tony Wickhamf34bee82018-12-03 18:11:39 -0800388 * Draws the notification dot in the top right corner of the icon bounds.
Tony Wickham1237df02017-02-24 08:59:36 -0800389 * @param canvas The canvas to draw to.
390 */
Tony Wickhamf34bee82018-12-03 18:11:39 -0800391 protected void drawDotIfNecessary(Canvas canvas) {
392 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) {
Tony Wickham8912b042018-11-29 15:28:53 -0800393 getIconBounds(mDotParams.iconBounds);
Tony Wickhame1cb93f2019-05-03 11:27:32 -0700394 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale());
Tony Wickham1237df02017-02-24 08:59:36 -0800395 final int scrollX = getScrollX();
396 final int scrollY = getScrollY();
397 canvas.translate(scrollX, scrollY);
Tony Wickham8912b042018-11-29 15:28:53 -0800398 mDotRenderer.draw(canvas, mDotParams);
Tony Wickham1237df02017-02-24 08:59:36 -0800399 canvas.translate(-scrollX, -scrollY);
400 }
401 }
402
Jon Miranda9b78e192019-08-30 18:42:01 -0700403 @Override
404 public void setForceHideDot(boolean forceHideDot) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800405 if (mForceHideDot == forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800406 return;
407 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800408 mForceHideDot = forceHideDot;
Tony Wickham1237df02017-02-24 08:59:36 -0800409
Tony Wickhamf34bee82018-12-03 18:11:39 -0800410 if (forceHideDot) {
Tony Wickham1237df02017-02-24 08:59:36 -0800411 invalidate();
Tony Wickhamf34bee82018-12-03 18:11:39 -0800412 } else if (hasDot()) {
413 animateDotScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800414 }
415 }
416
Tony Wickhamf34bee82018-12-03 18:11:39 -0800417 private boolean hasDot() {
418 return mDotInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800419 }
420
421 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700422 getIconBounds(this, outBounds, mIconSize);
423 }
424
425 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
426 int top = iconView.getPaddingTop();
427 int left = (iconView.getWidth() - iconSize) / 2;
428 int right = left + iconSize;
429 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800430 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800431 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400432
433 @Override
Winson1f064272016-07-18 17:18:02 -0700434 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
435 if (mCenterVertically) {
436 Paint.FontMetrics fm = getPaint().getFontMetrics();
437 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
438 (int) Math.ceil(fm.bottom - fm.top);
439 int height = MeasureSpec.getSize(heightMeasureSpec);
440 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
441 getPaddingBottom());
442 }
443 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
444 }
445
446 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700447 public void setTextColor(int color) {
448 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700449 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700450 }
451
Adam Cohen96bb7982014-07-07 11:58:56 -0700452 @Override
453 public void setTextColor(ColorStateList colors) {
454 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700455 if (Float.compare(mTextAlpha, 1) == 0) {
456 super.setTextColor(colors);
457 } else {
458 super.setTextColor(getModifiedColor());
459 }
Adam Cohen477828c2013-09-20 12:05:49 -0700460 }
461
Tony7308cde2017-06-27 22:38:33 -0700462 public boolean shouldTextBeVisible() {
463 // Text should be visible everywhere but the hotseat.
464 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
465 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
Samuel Fufaefb665d2019-10-30 13:24:14 -0700466 return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT
467 && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION);
Tony7308cde2017-06-27 22:38:33 -0700468 }
469
Winson Chung5f8afe62013-08-12 16:19:28 -0700470 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700471 setTextAlpha(visible ? 1 : 0);
472 }
473
474 private void setTextAlpha(float alpha) {
475 mTextAlpha = alpha;
476 super.setTextColor(getModifiedColor());
477 }
478
479 private int getModifiedColor() {
480 if (mTextAlpha == 0) {
481 // Special case to prevent text shadows in high contrast mode
482 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700483 }
Sunny Goyal066ace12018-11-05 11:08:31 -0800484 return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700485 }
486
487 /**
488 * Creates an animator to fade the text in or out.
489 * @param fadeIn Whether the text should fade in or fade out.
490 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700491 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700492 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
Jon Miranda83cdca62019-04-15 13:01:05 -0700493 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700494 }
495
Winson Chungaffd7b42010-08-20 15:11:56 -0700496 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800497 public void cancelLongPress() {
498 super.cancelLongPress();
Winson Chung88f33452012-02-23 15:23:44 -0800499 mLongPressHelper.cancelLongPress();
500 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500501
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800502 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyal95899162019-03-27 16:03:06 -0700503 if (getTag() instanceof WorkspaceItemInfo) {
504 WorkspaceItemInfo info = (WorkspaceItemInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700505 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700506 final int progressLevel = isPromise ?
Sunny Goyal95899162019-03-27 16:03:06 -0700507 ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
Sunny Goyal34942622014-08-29 17:20:55 -0700508 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700509
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700510 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
511 if (preloadDrawable != null && promiseStateChanged) {
512 preloadDrawable.maybePerformFinishedAnimation();
513 }
514 }
515 }
516
517 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
518 if (getTag() instanceof ItemInfoWithIcon) {
519 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700520 if (progressLevel >= 100) {
521 setContentDescription(info.contentDescription != null
522 ? info.contentDescription : "");
523 } else if (progressLevel > 0) {
524 setContentDescription(getContext()
525 .getString(R.string.app_downloading_title, info.title,
526 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
527 } else {
528 setContentDescription(getContext()
529 .getString(R.string.app_waiting_download_title, info.title));
530 }
Winson Chungb745afb2015-03-02 11:51:23 -0800531 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700532 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800533 if (mIcon instanceof PreloadIconDrawable) {
534 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700535 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700536 } else {
Sunny Goyal14168432019-10-24 15:59:49 -0700537 preloadDrawable = newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700538 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700539 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700540 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700541 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700542 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400543 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700544 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400545 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700546
Tony Wickhamf34bee82018-12-03 18:11:39 -0800547 public void applyDotState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800548 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800549 boolean wasDotted = mDotInfo != null;
550 mDotInfo = mActivity.getDotInfoForItem(itemInfo);
551 boolean isDotted = mDotInfo != null;
552 float newDotScale = isDotted ? 1f : 0;
Samuel Fufac96fa242019-09-26 23:06:32 -0700553 if (mDisplay == DISPLAY_ALL_APPS) {
554 mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps;
555 } else {
556 mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace;
557 }
Tony Wickhamf34bee82018-12-03 18:11:39 -0800558 if (wasDotted || isDotted) {
559 // Animate when a dot is first added or when it is removed.
560 if (animate && (wasDotted ^ isDotted) && isShown()) {
561 animateDotScale(newDotScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800562 } else {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800563 cancelDotScaleAnim();
564 mDotParams.scale = newDotScale;
Tony Wickham1237df02017-02-24 08:59:36 -0800565 invalidate();
566 }
567 }
Tony Wickham305e9202018-01-23 17:46:47 -0800568 if (itemInfo.contentDescription != null) {
vadimtda6dad52019-05-21 13:24:23 -0700569 if (itemInfo.isDisabled()) {
570 setContentDescription(getContext().getString(R.string.disabled_app_label,
571 itemInfo.contentDescription));
572 } else if (hasDot()) {
Tony Wickhamf34bee82018-12-03 18:11:39 -0800573 int count = mDotInfo.getNotificationCount();
Tony Wickham305e9202018-01-23 17:46:47 -0800574 setContentDescription(getContext().getResources().getQuantityString(
Tony Wickhamf34bee82018-12-03 18:11:39 -0800575 R.plurals.dotted_app_label, count, itemInfo.contentDescription, count));
Tony Wickham305e9202018-01-23 17:46:47 -0800576 } else {
577 setContentDescription(itemInfo.contentDescription);
578 }
579 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800580 }
581 }
582
Winson Chungb745afb2015-03-02 11:51:23 -0800583 /**
584 * Sets the icon for this view based on the layout direction.
585 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700586 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700587 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700588 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700589 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700590 mIcon = icon;
Hyunyoung Songa2373852019-01-04 12:01:32 -0800591 if (mIcon != null) {
592 mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false);
593 }
Tony17b7f9b2017-05-23 12:19:09 -0700594 }
595
Jon Miranda9b78e192019-08-30 18:42:01 -0700596 @Override
Tony17b7f9b2017-05-23 12:19:09 -0700597 public void setIconVisible(boolean visible) {
598 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700599 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700600 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700601 }
602
603 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700604 // If we had already set an icon before, disable relayout as the icon size is the
605 // same as before.
606 mDisableRelayout = mIcon != null;
607
608 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800609 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800610 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800611 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700612 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800613 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700614 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800615 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700616
Sunny Goyal69b75642015-05-15 17:00:24 -0700617 @Override
618 public void requestLayout() {
619 if (!mDisableRelayout) {
620 super.requestLayout();
621 }
622 }
623
Sunny Goyal34b65272015-03-11 16:56:52 -0700624 /**
625 * Applies the item info if it is same as what the view is pointing to currently.
626 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800627 @Override
628 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700629 if (getTag() == info) {
630 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700631 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700632
Jon Miranda7f522a22017-07-28 11:56:47 -0700633 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
Sunny Goyal3808a692019-10-25 13:41:28 -0700634 info.bitmap.icon.prepareToDraw();
Jon Miranda7f522a22017-07-28 11:56:47 -0700635
Sunny Goyal34b65272015-03-11 16:56:52 -0700636 if (info instanceof AppInfo) {
637 applyFromApplicationInfo((AppInfo) info);
Sunny Goyal95899162019-03-27 16:03:06 -0700638 } else if (info instanceof WorkspaceItemInfo) {
639 applyFromWorkspaceItem((WorkspaceItemInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700640 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700641 } else if (info instanceof PackageItemInfo) {
642 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700643 }
Winsonc0880492015-08-21 11:16:27 -0700644
Sunny Goyal69b75642015-05-15 17:00:24 -0700645 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700646 }
647 }
648
649 /**
650 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
651 */
652 public void verifyHighRes() {
653 if (mIconLoadRequest != null) {
654 mIconLoadRequest.cancel();
655 mIconLoadRequest = null;
656 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800657 if (getTag() instanceof ItemInfoWithIcon) {
658 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700659 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800660 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700661 .updateIconInBackground(BubbleTextView.this, info);
662 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700663 }
664 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700665
Jon Miranda47170112017-03-03 14:57:14 -0800666 public int getIconSize() {
667 return mIconSize;
668 }
Adam Cohen65086992020-02-19 08:40:49 -0800669
670 @Override
671 public int getViewType() {
672 return DRAGGABLE_ICON;
673 }
674
675 @Override
676 public void getVisualDragBounds(Rect bounds) {
677 DeviceProfile grid = mActivity.getDeviceProfile();
678 BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx);
679 }
680
681 @Override
682 public void prepareDrawDragView() {
683 if (getIcon() instanceof FastBitmapDrawable) {
684 FastBitmapDrawable icon = (FastBitmapDrawable) getIcon();
685 icon.setScale(1f);
686 }
687 setForceHideDot(true);
688 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800689}