blob: 5d401433bf16b39cb01f7d7f73adeca5ce1d2ac4 [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
Tony4043b052018-08-17 13:47:39 -070019import android.animation.Animator;
20import android.animation.AnimatorListenerAdapter;
Tony Wickham1237df02017-02-24 08:59:36 -080021import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070023import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070024import android.content.res.TypedArray;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070026import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070027import android.graphics.Paint;
Tony Wickham1237df02017-02-24 08:59:36 -080028import android.graphics.Point;
29import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070030import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031import android.graphics.drawable.Drawable;
Sunny Goyal66dccad2018-03-19 12:00:51 -070032import android.text.TextUtils.TruncateAt;
Winson Chung656d11c2010-11-29 17:15:47 -080033import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080034import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070035import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070036import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080037import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070038import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040039import android.view.ViewConfiguration;
Sunny Goyal4ffec482016-02-09 11:28:52 -080040import android.view.ViewDebug;
Michael Jurkabdb5c532011-02-01 15:05:06 -080041import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070042
Sunny Goyal34b65272015-03-11 16:56:52 -070043import com.android.launcher3.IconCache.IconLoadRequest;
Sunny Goyal2d7cca12017-01-03 16:52:43 -080044import com.android.launcher3.IconCache.ItemInfoUpdateReceiver;
Sunny Goyal3dce5f32017-10-05 11:40:05 -070045import com.android.launcher3.Launcher.OnResumeCallback;
Tony Wickham9a8d11f2017-01-11 09:53:12 -080046import com.android.launcher3.badge.BadgeInfo;
Tony Wickham010d2552017-01-20 08:15:28 -080047import com.android.launcher3.badge.BadgeRenderer;
Tony7308cde2017-06-27 22:38:33 -070048import com.android.launcher3.folder.FolderIcon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -080049import com.android.launcher3.graphics.DrawableFactory;
Tony Wickham1237df02017-02-24 08:59:36 -080050import com.android.launcher3.graphics.IconPalette;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080051import com.android.launcher3.graphics.PreloadIconDrawable;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070052import com.android.launcher3.model.PackageItemInfo;
Sunny Goyal34b65272015-03-11 16:56:52 -070053
Sunny Goyalc469aad2015-10-01 11:24:23 -070054import java.text.NumberFormat;
55
Sunny Goyald2303072018-08-14 15:21:45 -070056import androidx.core.graphics.ColorUtils;
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
72 private static final Property<BubbleTextView, Float> BADGE_SCALE_PROPERTY
73 = new Property<BubbleTextView, Float>(Float.TYPE, "badgeScale") {
74 @Override
75 public Float get(BubbleTextView bubbleTextView) {
76 return bubbleTextView.mBadgeScale;
77 }
78
79 @Override
80 public void set(BubbleTextView bubbleTextView, Float value) {
81 bubbleTextView.mBadgeScale = value;
82 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 Goyaled7a6932018-04-13 11:41:50 -070099 private final BaseDraggingActivity mActivity;
100 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")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700118 private BadgeInfo mBadgeInfo;
119 private BadgeRenderer mBadgeRenderer;
120 private int mBadgeColor;
Tony4043b052018-08-17 13:47:39 -0700121 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyaled7a6932018-04-13 11:41:50 -0700122 private float mBadgeScale;
Tony4043b052018-08-17 13:47:39 -0700123 private Animator mBadgeScaleAnim;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700124 private boolean mForceHideBadge;
125 private Point mTempSpaceForBadgeOffset = new Point();
126 private Rect mTempIconBounds = new Rect();
127
Sunny Goyal4ffec482016-02-09 11:28:52 -0800128 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800129 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800130 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700131 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800132 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700133 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500134
Sunny Goyal34b65272015-03-11 16:56:52 -0700135 private IconLoadRequest mIconLoadRequest;
136
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800137 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700138 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800139 }
140
141 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700142 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800143 }
144
145 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
146 super(context, attrs, defStyle);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700147 mActivity = BaseDraggingActivity.fromContext(context);
148 DeviceProfile grid = mActivity.getDeviceProfile();
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700149 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Adam Cohen96bb7982014-07-07 11:58:56 -0700150
Adam Cohen96bb7982014-07-07 11:58:56 -0700151 TypedArray a = context.obtainStyledAttributes(attrs,
152 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800153 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700154
155 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
156 int defaultIconSize = grid.iconSizePx;
157 if (display == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700158 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700159 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700160 } else if (display == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700161 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
162 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700163 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700164 } else if (display == DISPLAY_FOLDER) {
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 Goyaldfaccf62015-05-11 16:30:44 -0700168 }
Winson1f064272016-07-18 17:18:02 -0700169 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700170
171 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
172 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700173 a.recycle();
174
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800175 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700176 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800177
Sunny Goyal66dccad2018-03-19 12:00:51 -0700178 setEllipsize(TruncateAt.END);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700179 setAccessibilityDelegate(mActivity.getAccessibilityDelegate());
Sunny Goyaled7a6932018-04-13 11:41:50 -0700180 setTextAlpha(1f);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800181 }
182
Sunny Goyal66dccad2018-03-19 12:00:51 -0700183 @Override
184 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
185 // Disable marques when not focused to that, so that updating text does not cause relayout.
186 setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END);
187 super.onFocusChanged(focused, direction, previouslyFocusedRect);
188 }
189
Jon Miranda52549442017-10-26 11:28:06 -0700190 /**
191 * Resets the view so it can be recycled.
192 */
193 public void reset() {
194 mBadgeInfo = null;
Sunny Goyal179249d2017-12-19 16:49:24 -0800195 mBadgeColor = Color.TRANSPARENT;
Tony4043b052018-08-17 13:47:39 -0700196 cancelBadgeScaleAnim();
Jon Miranda48043ee2017-11-01 15:40:22 -0700197 mBadgeScale = 0f;
Jon Miranda52549442017-10-26 11:28:06 -0700198 mForceHideBadge = false;
199 }
200
Tony4043b052018-08-17 13:47:39 -0700201 private void cancelBadgeScaleAnim() {
202 if (mBadgeScaleAnim != null) {
203 mBadgeScaleAnim.cancel();
204 }
205 }
206
207 private void animateBadgeScale(float... badgeScales) {
208 cancelBadgeScaleAnim();
209 mBadgeScaleAnim = ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, badgeScales);
210 mBadgeScaleAnim.addListener(new AnimatorListenerAdapter() {
211 @Override
212 public void onAnimationEnd(Animator animation) {
213 mBadgeScaleAnim = null;
214 }
215 });
216 mBadgeScaleAnim.start();
217 }
218
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800219 public void applyFromShortcutInfo(ShortcutInfo info) {
220 applyFromShortcutInfo(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700221 }
222
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800223 public void applyFromShortcutInfo(ShortcutInfo info, boolean promiseStateChanged) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800224 applyIconAndLabel(info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800225 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700226 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800227 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500228 }
Tony Wickham010d2552017-01-20 08:15:28 -0800229
Tony Wickham1e618492017-02-02 12:57:18 -0800230 applyBadgeState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800231 }
232
Sunny Goyal508da152014-08-14 10:53:27 -0700233 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800234 applyIconAndLabel(info);
Sunny Goyalf4204382016-07-13 10:46:07 -0700235
Winson Chung888b3a12015-03-13 11:14:16 -0700236 // We don't need to check the info since it's not a ShortcutInfo
237 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700238
239 // Verify high res immediately
240 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800241
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700242 if (info instanceof PromiseAppInfo) {
243 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
244 applyProgressLevel(promiseAppInfo.level);
245 }
Tony Wickham1e618492017-02-02 12:57:18 -0800246 applyBadgeState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700247 }
248
Sunny Goyal0e08f162015-05-12 11:32:39 -0700249 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal179249d2017-12-19 16:49:24 -0800250 applyIconAndLabel(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700251 // We don't need to check the info since it's not a ShortcutInfo
252 super.setTag(info);
253
254 // Verify high res immediately
255 verifyHighRes();
256 }
257
Sunny Goyal179249d2017-12-19 16:49:24 -0800258 private void applyIconAndLabel(ItemInfoWithIcon info) {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700259 FastBitmapDrawable iconDrawable = DrawableFactory.INSTANCE.get(getContext())
260 .newIcon(getContext(), info);
Sunny Goyal179249d2017-12-19 16:49:24 -0800261 mBadgeColor = IconPalette.getMutedColor(info.iconColor, 0.54f);
262
Sunny Goyalf4204382016-07-13 10:46:07 -0700263 setIcon(iconDrawable);
264 setText(info.title);
265 if (info.contentDescription != null) {
266 setContentDescription(info.isDisabled()
267 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
268 : info.contentDescription);
269 }
270 }
271
Winson Chung7501adf2015-06-02 11:24:28 -0700272 /**
273 * Overrides the default long press timeout.
274 */
275 public void setLongPressTimeout(int longPressTimeout) {
276 mLongPressHelper.setLongPressTimeout(longPressTimeout);
277 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700278
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800279 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700280 public void setTag(Object tag) {
281 if (tag != null) {
282 LauncherModel.checkItemInfo((ItemInfo) tag);
283 }
284 super.setTag(tag);
285 }
286
287 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800288 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700289 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800290 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800291 }
Sunny Goyal508da152014-08-14 10:53:27 -0700292 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800293
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800294 @Override
295 protected int[] onCreateDrawableState(int extraSpace) {
296 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
297 if (mStayPressed) {
298 mergeDrawableStates(drawableState, STATE_PRESSED);
299 }
300 return drawableState;
301 }
302
Winson Chungb745afb2015-03-02 11:51:23 -0800303 /** Returns the icon for this view. */
304 public Drawable getIcon() {
305 return mIcon;
306 }
307
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700308 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800309 public boolean onTouchEvent(MotionEvent event) {
310 // Call the superclass onTouchEvent first, because sometimes it changes the state to
311 // isPressed() on an ACTION_UP
312 boolean result = super.onTouchEvent(event);
313
Mady Melloref044dd2015-06-02 15:35:07 -0700314 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700315 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700316 mLongPressHelper.cancelLongPress();
317 result = true;
318 }
319
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800320 switch (event.getAction()) {
321 case MotionEvent.ACTION_DOWN:
Mady Melloref044dd2015-06-02 15:35:07 -0700322 // If we're in a stylus button press, don't check for long press.
323 if (!mStylusEventHelper.inStylusButtonPressed()) {
324 mLongPressHelper.postCheckForLongPress();
325 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800326 break;
327 case MotionEvent.ACTION_CANCEL:
328 case MotionEvent.ACTION_UP:
Winson Chung88f33452012-02-23 15:23:44 -0800329 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800330 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400331 case MotionEvent.ACTION_MOVE:
332 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
333 mLongPressHelper.cancelLongPress();
334 }
335 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800336 }
337 return result;
338 }
339
Michael Jurkaddd62e92011-02-16 17:49:14 -0800340 void setStayPressed(boolean stayPressed) {
341 mStayPressed = stayPressed;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800342 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800343 }
344
Sunny Goyal3dce5f32017-10-05 11:40:05 -0700345 @Override
346 public void onLauncherResume() {
347 // Reset the pressed state of icon that was locked in the press state while activity
348 // was launching
349 setStayPressed(false);
350 }
351
Sunny Goyal508da152014-08-14 10:53:27 -0700352 void clearPressedBackground() {
353 setPressed(false);
354 setStayPressed(false);
355 }
356
357 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700358 public boolean onKeyUp(int keyCode, KeyEvent event) {
359 // Unlike touch events, keypress event propagate pressed state change immediately,
360 // without waiting for onClickHandler to execute. Disable pressed state changes here
361 // to avoid flickering.
362 mIgnorePressedStateChange = true;
363 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700364 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800365 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700366 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800367 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800368
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700369 @SuppressWarnings("wrongcall")
370 protected void drawWithoutBadge(Canvas canvas) {
371 super.onDraw(canvas);
372 }
373
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800374 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700375 public void onDraw(Canvas canvas) {
376 super.onDraw(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800377 drawBadgeIfNecessary(canvas);
378 }
379
380 /**
381 * Draws the icon badge in the top right corner of the icon bounds.
382 * @param canvas The canvas to draw to.
383 */
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700384 protected void drawBadgeIfNecessary(Canvas canvas) {
Tony Wickham1237df02017-02-24 08:59:36 -0800385 if (!mForceHideBadge && (hasBadge() || mBadgeScale > 0)) {
386 getIconBounds(mTempIconBounds);
387 mTempSpaceForBadgeOffset.set((getWidth() - mIconSize) / 2, getPaddingTop());
388 final int scrollX = getScrollX();
389 final int scrollY = getScrollY();
390 canvas.translate(scrollX, scrollY);
Sunny Goyal179249d2017-12-19 16:49:24 -0800391 mBadgeRenderer.draw(canvas, mBadgeColor, mTempIconBounds, mBadgeScale,
Tony Wickham1237df02017-02-24 08:59:36 -0800392 mTempSpaceForBadgeOffset);
393 canvas.translate(-scrollX, -scrollY);
394 }
395 }
396
397 public void forceHideBadge(boolean forceHideBadge) {
398 if (mForceHideBadge == forceHideBadge) {
399 return;
400 }
401 mForceHideBadge = forceHideBadge;
402
403 if (forceHideBadge) {
404 invalidate();
405 } else if (hasBadge()) {
Tony4043b052018-08-17 13:47:39 -0700406 animateBadgeScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800407 }
408 }
409
410 private boolean hasBadge() {
Tony Wickham0530e8c2017-04-26 18:13:56 -0700411 return mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800412 }
413
414 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700415 getIconBounds(this, outBounds, mIconSize);
416 }
417
418 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
419 int top = iconView.getPaddingTop();
420 int left = (iconView.getWidth() - iconSize) / 2;
421 int right = left + iconSize;
422 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800423 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800424 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400425
426 @Override
Winson1f064272016-07-18 17:18:02 -0700427 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
428 if (mCenterVertically) {
429 Paint.FontMetrics fm = getPaint().getFontMetrics();
430 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
431 (int) Math.ceil(fm.bottom - fm.top);
432 int height = MeasureSpec.getSize(heightMeasureSpec);
433 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
434 getPaddingBottom());
435 }
436 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
437 }
438
439 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700440 public void setTextColor(int color) {
441 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700442 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700443 }
444
Adam Cohen96bb7982014-07-07 11:58:56 -0700445 @Override
446 public void setTextColor(ColorStateList colors) {
447 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700448 if (Float.compare(mTextAlpha, 1) == 0) {
449 super.setTextColor(colors);
450 } else {
451 super.setTextColor(getModifiedColor());
452 }
Adam Cohen477828c2013-09-20 12:05:49 -0700453 }
454
Tony7308cde2017-06-27 22:38:33 -0700455 public boolean shouldTextBeVisible() {
456 // Text should be visible everywhere but the hotseat.
457 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
458 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
459 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
460 }
461
Winson Chung5f8afe62013-08-12 16:19:28 -0700462 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700463 setTextAlpha(visible ? 1 : 0);
464 }
465
466 private void setTextAlpha(float alpha) {
467 mTextAlpha = alpha;
468 super.setTextColor(getModifiedColor());
469 }
470
471 private int getModifiedColor() {
472 if (mTextAlpha == 0) {
473 // Special case to prevent text shadows in high contrast mode
474 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700475 }
Sunny Goyaled7a6932018-04-13 11:41:50 -0700476 return ColorUtils.setAlphaComponent(
477 mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700478 }
479
480 /**
481 * Creates an animator to fade the text in or out.
482 * @param fadeIn Whether the text should fade in or fade out.
483 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700484 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700485 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
486 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700487 }
488
Winson Chungaffd7b42010-08-20 15:11:56 -0700489 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800490 public void cancelLongPress() {
491 super.cancelLongPress();
492
493 mLongPressHelper.cancelLongPress();
494 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500495
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800496 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700497 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400498 ShortcutInfo info = (ShortcutInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700499 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700500 final int progressLevel = isPromise ?
501 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
502 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700503
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700504 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
505 if (preloadDrawable != null && promiseStateChanged) {
506 preloadDrawable.maybePerformFinishedAnimation();
507 }
508 }
509 }
510
511 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
512 if (getTag() instanceof ItemInfoWithIcon) {
513 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700514 if (progressLevel >= 100) {
515 setContentDescription(info.contentDescription != null
516 ? info.contentDescription : "");
517 } else if (progressLevel > 0) {
518 setContentDescription(getContext()
519 .getString(R.string.app_downloading_title, info.title,
520 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
521 } else {
522 setContentDescription(getContext()
523 .getString(R.string.app_waiting_download_title, info.title));
524 }
Winson Chungb745afb2015-03-02 11:51:23 -0800525 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700526 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800527 if (mIcon instanceof PreloadIconDrawable) {
528 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700529 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700530 } else {
Sunny Goyal2b787e52018-08-20 15:01:03 -0700531 preloadDrawable = DrawableFactory.INSTANCE.get(getContext())
532 .newPendingIcon(getContext(), info);
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700533 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700534 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700535 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700536 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700537 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400538 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700539 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400540 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700541
Tony Wickham1e618492017-02-02 12:57:18 -0800542 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800543 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickham1237df02017-02-24 08:59:36 -0800544 boolean wasBadged = mBadgeInfo != null;
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700545 mBadgeInfo = mActivity.getBadgeInfoForItem(itemInfo);
Tony Wickham2fe09f22017-04-25 12:46:04 -0700546 boolean isBadged = mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800547 float newBadgeScale = isBadged ? 1f : 0;
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700548 mBadgeRenderer = mActivity.getDeviceProfile().mBadgeRenderer;
Tony Wickham1237df02017-02-24 08:59:36 -0800549 if (wasBadged || isBadged) {
Tony Wickham1237df02017-02-24 08:59:36 -0800550 // Animate when a badge is first added or when it is removed.
551 if (animate && (wasBadged ^ isBadged) && isShown()) {
Tony4043b052018-08-17 13:47:39 -0700552 animateBadgeScale(newBadgeScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800553 } else {
Tony4043b052018-08-17 13:47:39 -0700554 cancelBadgeScaleAnim();
Tony Wickham1237df02017-02-24 08:59:36 -0800555 mBadgeScale = newBadgeScale;
556 invalidate();
557 }
558 }
Tony Wickham305e9202018-01-23 17:46:47 -0800559 if (itemInfo.contentDescription != null) {
560 if (hasBadge()) {
561 int count = mBadgeInfo.getNotificationCount();
562 setContentDescription(getContext().getResources().getQuantityString(
563 R.plurals.badged_app_label, count, itemInfo.contentDescription, count));
564 } else {
565 setContentDescription(itemInfo.contentDescription);
566 }
567 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800568 }
569 }
570
Winson Chungb745afb2015-03-02 11:51:23 -0800571 /**
572 * Sets the icon for this view based on the layout direction.
573 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700574 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700575 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700576 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700577 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700578 mIcon = icon;
Tony17b7f9b2017-05-23 12:19:09 -0700579 }
580
581 public void setIconVisible(boolean visible) {
582 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700583 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700584 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700585 }
586
587 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700588 // If we had already set an icon before, disable relayout as the icon size is the
589 // same as before.
590 mDisableRelayout = mIcon != null;
591
592 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800593 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800594 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800595 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700596 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800597 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700598 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800599 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700600
Sunny Goyal69b75642015-05-15 17:00:24 -0700601 @Override
602 public void requestLayout() {
603 if (!mDisableRelayout) {
604 super.requestLayout();
605 }
606 }
607
Sunny Goyal34b65272015-03-11 16:56:52 -0700608 /**
609 * Applies the item info if it is same as what the view is pointing to currently.
610 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800611 @Override
612 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700613 if (getTag() == info) {
614 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700615 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700616
Jon Miranda7f522a22017-07-28 11:56:47 -0700617 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
618 info.iconBitmap.prepareToDraw();
619
Sunny Goyal34b65272015-03-11 16:56:52 -0700620 if (info instanceof AppInfo) {
621 applyFromApplicationInfo((AppInfo) info);
622 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800623 applyFromShortcutInfo((ShortcutInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700624 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700625 } else if (info instanceof PackageItemInfo) {
626 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700627 }
Winsonc0880492015-08-21 11:16:27 -0700628
Sunny Goyal69b75642015-05-15 17:00:24 -0700629 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700630 }
631 }
632
633 /**
634 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
635 */
636 public void verifyHighRes() {
637 if (mIconLoadRequest != null) {
638 mIconLoadRequest.cancel();
639 mIconLoadRequest = null;
640 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800641 if (getTag() instanceof ItemInfoWithIcon) {
642 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal2b787e52018-08-20 15:01:03 -0700643 if (info.usingLowResIcon()) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800644 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700645 .updateIconInBackground(BubbleTextView.this, info);
646 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700647 }
648 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700649
Jon Miranda47170112017-03-03 14:57:14 -0800650 public int getIconSize() {
651 return mIconSize;
652 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800653}