blob: 230ea4fea0e561220aba863e014ea5c6013c009f [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) {
259 FastBitmapDrawable iconDrawable = DrawableFactory.get(getContext()).newIcon(info);
260 mBadgeColor = IconPalette.getMutedColor(info.iconColor, 0.54f);
261
Sunny Goyalf4204382016-07-13 10:46:07 -0700262 setIcon(iconDrawable);
263 setText(info.title);
264 if (info.contentDescription != null) {
265 setContentDescription(info.isDisabled()
266 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
267 : info.contentDescription);
268 }
269 }
270
Winson Chung7501adf2015-06-02 11:24:28 -0700271 /**
272 * Overrides the default long press timeout.
273 */
274 public void setLongPressTimeout(int longPressTimeout) {
275 mLongPressHelper.setLongPressTimeout(longPressTimeout);
276 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700277
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800278 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700279 public void setTag(Object tag) {
280 if (tag != null) {
281 LauncherModel.checkItemInfo((ItemInfo) tag);
282 }
283 super.setTag(tag);
284 }
285
286 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800287 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700288 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800289 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800290 }
Sunny Goyal508da152014-08-14 10:53:27 -0700291 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800292
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800293 @Override
294 protected int[] onCreateDrawableState(int extraSpace) {
295 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
296 if (mStayPressed) {
297 mergeDrawableStates(drawableState, STATE_PRESSED);
298 }
299 return drawableState;
300 }
301
Winson Chungb745afb2015-03-02 11:51:23 -0800302 /** Returns the icon for this view. */
303 public Drawable getIcon() {
304 return mIcon;
305 }
306
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700307 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800308 public boolean onTouchEvent(MotionEvent event) {
309 // Call the superclass onTouchEvent first, because sometimes it changes the state to
310 // isPressed() on an ACTION_UP
311 boolean result = super.onTouchEvent(event);
312
Mady Melloref044dd2015-06-02 15:35:07 -0700313 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700314 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700315 mLongPressHelper.cancelLongPress();
316 result = true;
317 }
318
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800319 switch (event.getAction()) {
320 case MotionEvent.ACTION_DOWN:
Mady Melloref044dd2015-06-02 15:35:07 -0700321 // If we're in a stylus button press, don't check for long press.
322 if (!mStylusEventHelper.inStylusButtonPressed()) {
323 mLongPressHelper.postCheckForLongPress();
324 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800325 break;
326 case MotionEvent.ACTION_CANCEL:
327 case MotionEvent.ACTION_UP:
Winson Chung88f33452012-02-23 15:23:44 -0800328 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800329 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400330 case MotionEvent.ACTION_MOVE:
331 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
332 mLongPressHelper.cancelLongPress();
333 }
334 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800335 }
336 return result;
337 }
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
345 public void onLauncherResume() {
346 // Reset the pressed state of icon that was locked in the press state while activity
347 // was launching
348 setStayPressed(false);
349 }
350
Sunny Goyal508da152014-08-14 10:53:27 -0700351 void clearPressedBackground() {
352 setPressed(false);
353 setStayPressed(false);
354 }
355
356 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700357 public boolean onKeyUp(int keyCode, KeyEvent event) {
358 // Unlike touch events, keypress event propagate pressed state change immediately,
359 // without waiting for onClickHandler to execute. Disable pressed state changes here
360 // to avoid flickering.
361 mIgnorePressedStateChange = true;
362 boolean result = super.onKeyUp(keyCode, event);
Sunny Goyal508da152014-08-14 10:53:27 -0700363 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800364 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700365 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800366 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800367
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700368 @SuppressWarnings("wrongcall")
369 protected void drawWithoutBadge(Canvas canvas) {
370 super.onDraw(canvas);
371 }
372
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800373 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700374 public void onDraw(Canvas canvas) {
375 super.onDraw(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800376 drawBadgeIfNecessary(canvas);
377 }
378
379 /**
380 * Draws the icon badge in the top right corner of the icon bounds.
381 * @param canvas The canvas to draw to.
382 */
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700383 protected void drawBadgeIfNecessary(Canvas canvas) {
Tony Wickham1237df02017-02-24 08:59:36 -0800384 if (!mForceHideBadge && (hasBadge() || mBadgeScale > 0)) {
385 getIconBounds(mTempIconBounds);
386 mTempSpaceForBadgeOffset.set((getWidth() - mIconSize) / 2, getPaddingTop());
387 final int scrollX = getScrollX();
388 final int scrollY = getScrollY();
389 canvas.translate(scrollX, scrollY);
Sunny Goyal179249d2017-12-19 16:49:24 -0800390 mBadgeRenderer.draw(canvas, mBadgeColor, mTempIconBounds, mBadgeScale,
Tony Wickham1237df02017-02-24 08:59:36 -0800391 mTempSpaceForBadgeOffset);
392 canvas.translate(-scrollX, -scrollY);
393 }
394 }
395
396 public void forceHideBadge(boolean forceHideBadge) {
397 if (mForceHideBadge == forceHideBadge) {
398 return;
399 }
400 mForceHideBadge = forceHideBadge;
401
402 if (forceHideBadge) {
403 invalidate();
404 } else if (hasBadge()) {
Tony4043b052018-08-17 13:47:39 -0700405 animateBadgeScale(0, 1);
Tony Wickham1237df02017-02-24 08:59:36 -0800406 }
407 }
408
409 private boolean hasBadge() {
Tony Wickham0530e8c2017-04-26 18:13:56 -0700410 return mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800411 }
412
413 public void getIconBounds(Rect outBounds) {
Tony05d98c22018-07-23 08:01:15 -0700414 getIconBounds(this, outBounds, mIconSize);
415 }
416
417 public static void getIconBounds(View iconView, Rect outBounds, int iconSize) {
418 int top = iconView.getPaddingTop();
419 int left = (iconView.getWidth() - iconSize) / 2;
420 int right = left + iconSize;
421 int bottom = top + iconSize;
Tony Wickham1237df02017-02-24 08:59:36 -0800422 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800423 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400424
425 @Override
Winson1f064272016-07-18 17:18:02 -0700426 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
427 if (mCenterVertically) {
428 Paint.FontMetrics fm = getPaint().getFontMetrics();
429 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
430 (int) Math.ceil(fm.bottom - fm.top);
431 int height = MeasureSpec.getSize(heightMeasureSpec);
432 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
433 getPaddingBottom());
434 }
435 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
436 }
437
438 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700439 public void setTextColor(int color) {
440 mTextColor = color;
Sunny Goyaled7a6932018-04-13 11:41:50 -0700441 super.setTextColor(getModifiedColor());
Adam Cohen477828c2013-09-20 12:05:49 -0700442 }
443
Adam Cohen96bb7982014-07-07 11:58:56 -0700444 @Override
445 public void setTextColor(ColorStateList colors) {
446 mTextColor = colors.getDefaultColor();
Sunny Goyaled7a6932018-04-13 11:41:50 -0700447 if (Float.compare(mTextAlpha, 1) == 0) {
448 super.setTextColor(colors);
449 } else {
450 super.setTextColor(getModifiedColor());
451 }
Adam Cohen477828c2013-09-20 12:05:49 -0700452 }
453
Tony7308cde2017-06-27 22:38:33 -0700454 public boolean shouldTextBeVisible() {
455 // Text should be visible everywhere but the hotseat.
456 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
457 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
458 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
459 }
460
Winson Chung5f8afe62013-08-12 16:19:28 -0700461 public void setTextVisibility(boolean visible) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700462 setTextAlpha(visible ? 1 : 0);
463 }
464
465 private void setTextAlpha(float alpha) {
466 mTextAlpha = alpha;
467 super.setTextColor(getModifiedColor());
468 }
469
470 private int getModifiedColor() {
471 if (mTextAlpha == 0) {
472 // Special case to prevent text shadows in high contrast mode
473 return Color.TRANSPARENT;
Winson Chung5f8afe62013-08-12 16:19:28 -0700474 }
Sunny Goyaled7a6932018-04-13 11:41:50 -0700475 return ColorUtils.setAlphaComponent(
476 mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha));
Tony8f402802017-06-16 17:24:54 -0700477 }
478
479 /**
480 * Creates an animator to fade the text in or out.
481 * @param fadeIn Whether the text should fade in or fade out.
482 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700483 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Sunny Goyaled7a6932018-04-13 11:41:50 -0700484 float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0;
485 return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700486 }
487
Winson Chungaffd7b42010-08-20 15:11:56 -0700488 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800489 public void cancelLongPress() {
490 super.cancelLongPress();
491
492 mLongPressHelper.cancelLongPress();
493 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500494
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800495 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700496 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400497 ShortcutInfo info = (ShortcutInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700498 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700499 final int progressLevel = isPromise ?
500 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
501 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700502
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700503 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
504 if (preloadDrawable != null && promiseStateChanged) {
505 preloadDrawable.maybePerformFinishedAnimation();
506 }
507 }
508 }
509
510 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
511 if (getTag() instanceof ItemInfoWithIcon) {
512 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700513 if (progressLevel >= 100) {
514 setContentDescription(info.contentDescription != null
515 ? info.contentDescription : "");
516 } else if (progressLevel > 0) {
517 setContentDescription(getContext()
518 .getString(R.string.app_downloading_title, info.title,
519 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
520 } else {
521 setContentDescription(getContext()
522 .getString(R.string.app_waiting_download_title, info.title));
523 }
Winson Chungb745afb2015-03-02 11:51:23 -0800524 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700525 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800526 if (mIcon instanceof PreloadIconDrawable) {
527 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700528 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700529 } else {
Sunny Goyal96ac68a2017-02-02 16:37:21 -0800530 preloadDrawable = DrawableFactory.get(getContext())
Sunny Goyal179249d2017-12-19 16:49:24 -0800531 .newPendingIcon(info, getContext());
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700532 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700533 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700534 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700535 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700536 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400537 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700538 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400539 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700540
Tony Wickham1e618492017-02-02 12:57:18 -0800541 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800542 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickham1237df02017-02-24 08:59:36 -0800543 boolean wasBadged = mBadgeInfo != null;
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700544 mBadgeInfo = mActivity.getBadgeInfoForItem(itemInfo);
Tony Wickham2fe09f22017-04-25 12:46:04 -0700545 boolean isBadged = mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800546 float newBadgeScale = isBadged ? 1f : 0;
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700547 mBadgeRenderer = mActivity.getDeviceProfile().mBadgeRenderer;
Tony Wickham1237df02017-02-24 08:59:36 -0800548 if (wasBadged || isBadged) {
Tony Wickham1237df02017-02-24 08:59:36 -0800549 // Animate when a badge is first added or when it is removed.
550 if (animate && (wasBadged ^ isBadged) && isShown()) {
Tony4043b052018-08-17 13:47:39 -0700551 animateBadgeScale(newBadgeScale);
Tony Wickham1237df02017-02-24 08:59:36 -0800552 } else {
Tony4043b052018-08-17 13:47:39 -0700553 cancelBadgeScaleAnim();
Tony Wickham1237df02017-02-24 08:59:36 -0800554 mBadgeScale = newBadgeScale;
555 invalidate();
556 }
557 }
Tony Wickham305e9202018-01-23 17:46:47 -0800558 if (itemInfo.contentDescription != null) {
559 if (hasBadge()) {
560 int count = mBadgeInfo.getNotificationCount();
561 setContentDescription(getContext().getResources().getQuantityString(
562 R.plurals.badged_app_label, count, itemInfo.contentDescription, count));
563 } else {
564 setContentDescription(itemInfo.contentDescription);
565 }
566 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800567 }
568 }
569
Winson Chungb745afb2015-03-02 11:51:23 -0800570 /**
571 * Sets the icon for this view based on the layout direction.
572 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700573 private void setIcon(Drawable icon) {
Tony17b7f9b2017-05-23 12:19:09 -0700574 if (mIsIconVisible) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700575 applyCompoundDrawables(icon);
Tony17b7f9b2017-05-23 12:19:09 -0700576 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700577 mIcon = icon;
Tony17b7f9b2017-05-23 12:19:09 -0700578 }
579
580 public void setIconVisible(boolean visible) {
581 mIsIconVisible = visible;
Sunny Goyal66dccad2018-03-19 12:00:51 -0700582 Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT);
Tony17b7f9b2017-05-23 12:19:09 -0700583 applyCompoundDrawables(icon);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700584 }
585
586 protected void applyCompoundDrawables(Drawable icon) {
Sunny Goyal66dccad2018-03-19 12:00:51 -0700587 // If we had already set an icon before, disable relayout as the icon size is the
588 // same as before.
589 mDisableRelayout = mIcon != null;
590
591 icon.setBounds(0, 0, mIconSize, mIconSize);
Winson Chungb745afb2015-03-02 11:51:23 -0800592 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800593 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800594 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700595 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800596 }
Sunny Goyal66dccad2018-03-19 12:00:51 -0700597 mDisableRelayout = false;
Winson Chungb745afb2015-03-02 11:51:23 -0800598 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700599
Sunny Goyal69b75642015-05-15 17:00:24 -0700600 @Override
601 public void requestLayout() {
602 if (!mDisableRelayout) {
603 super.requestLayout();
604 }
605 }
606
Sunny Goyal34b65272015-03-11 16:56:52 -0700607 /**
608 * Applies the item info if it is same as what the view is pointing to currently.
609 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800610 @Override
611 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700612 if (getTag() == info) {
613 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700614 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700615
Jon Miranda7f522a22017-07-28 11:56:47 -0700616 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
617 info.iconBitmap.prepareToDraw();
618
Sunny Goyal34b65272015-03-11 16:56:52 -0700619 if (info instanceof AppInfo) {
620 applyFromApplicationInfo((AppInfo) info);
621 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800622 applyFromShortcutInfo((ShortcutInfo) info);
Sunny Goyal0b0847b2018-03-14 12:30:11 -0700623 mActivity.invalidateParent(info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700624 } else if (info instanceof PackageItemInfo) {
625 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700626 }
Winsonc0880492015-08-21 11:16:27 -0700627
Sunny Goyal69b75642015-05-15 17:00:24 -0700628 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700629 }
630 }
631
632 /**
633 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
634 */
635 public void verifyHighRes() {
636 if (mIconLoadRequest != null) {
637 mIconLoadRequest.cancel();
638 mIconLoadRequest = null;
639 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800640 if (getTag() instanceof ItemInfoWithIcon) {
641 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal0e08f162015-05-12 11:32:39 -0700642 if (info.usingLowResIcon) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800643 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700644 .updateIconInBackground(BubbleTextView.this, info);
645 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700646 }
647 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700648
Jon Miranda47170112017-03-03 14:57:14 -0800649 public int getIconSize() {
650 return mIconSize;
651 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800652}