blob: f20baea0393d2d567477b66e3e39305f02f9a45e [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
Tony Wickham1237df02017-02-24 08:59:36 -080019import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080020import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070021import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070022import android.content.res.TypedArray;
Michael Jurka67b2f6c2010-11-17 12:33:46 -080023import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080024import android.graphics.Canvas;
Tony17b7f9b2017-05-23 12:19:09 -070025import android.graphics.Color;
Winson1f064272016-07-18 17:18:02 -070026import android.graphics.Paint;
Tony Wickham1237df02017-02-24 08:59:36 -080027import android.graphics.Point;
28import android.graphics.Rect;
Tony17b7f9b2017-05-23 12:19:09 -070029import android.graphics.drawable.ColorDrawable;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.graphics.drawable.Drawable;
Tony8f402802017-06-16 17:24:54 -070031import android.support.v4.graphics.ColorUtils;
Winson Chung656d11c2010-11-29 17:15:47 -080032import android.util.AttributeSet;
Tony Wickham1237df02017-02-24 08:59:36 -080033import android.util.Property;
Winson Chung5f8afe62013-08-12 16:19:28 -070034import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070035import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080036import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070037import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040038import android.view.ViewConfiguration;
Sunny Goyal4ffec482016-02-09 11:28:52 -080039import android.view.ViewDebug;
Sunny Goyal4b6eb262015-05-14 19:24:40 -070040import android.view.ViewParent;
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;
Tony Wickham9a8d11f2017-01-11 09:53:12 -080045import com.android.launcher3.badge.BadgeInfo;
Tony Wickham010d2552017-01-20 08:15:28 -080046import com.android.launcher3.badge.BadgeRenderer;
Tony7308cde2017-06-27 22:38:33 -070047import com.android.launcher3.folder.FolderIcon;
Jon Miranda529af302017-02-28 14:18:54 -080048import com.android.launcher3.folder.FolderIconPreviewVerifier;
Sunny Goyal55cb70b2016-11-12 09:58:29 -080049import com.android.launcher3.graphics.DrawableFactory;
Sunny Goyal10629b02016-09-01 12:50:11 -070050import com.android.launcher3.graphics.HolographicOutlineHelper;
Tony Wickham1237df02017-02-24 08:59:36 -080051import com.android.launcher3.graphics.IconPalette;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080052import com.android.launcher3.graphics.PreloadIconDrawable;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070053import com.android.launcher3.model.PackageItemInfo;
Sunny Goyal34b65272015-03-11 16:56:52 -070054
Sunny Goyalc469aad2015-10-01 11:24:23 -070055import java.text.NumberFormat;
56
The Android Open Source Project31dd5032009-03-03 19:32:27 -080057/**
58 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
59 * because we want to make the bubble taller than the text and TextView's clip is
60 * too aggressive.
61 */
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080062public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver {
Sunny Goyal95abbb32014-08-04 10:53:22 -070063
Sunny Goyaldfaccf62015-05-11 16:30:44 -070064 private static final int DISPLAY_WORKSPACE = 0;
65 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070066 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070067
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080068 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
69
Sunny Goyal53d7ee42015-05-22 12:25:45 -070070 private final Launcher mLauncher;
Winson Chungb745afb2015-03-02 11:51:23 -080071 private Drawable mIcon;
Winson1f064272016-07-18 17:18:02 -070072 private final boolean mCenterVertically;
Sunny Goyal4e5a8782017-06-23 09:34:06 -070073
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080074 private final CheckLongPressHelper mLongPressHelper;
75 private final HolographicOutlineHelper mOutlineHelper;
Mady Melloref044dd2015-06-02 15:35:07 -070076 private final StylusEventHelper mStylusEventHelper;
Sunny Goyal9314b7c2017-06-23 10:36:27 -070077 private final float mSlop;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080078
Sunny Goyal508da152014-08-14 10:53:27 -070079 private Bitmap mPressedBackground;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080080
Winson Chung93f98ea2015-03-10 16:28:47 -070081 private final boolean mDeferShadowGenerationOnTouch;
Winson Chungb745afb2015-03-02 11:51:23 -080082 private final boolean mLayoutHorizontal;
83 private final int mIconSize;
Sunny Goyal4ffec482016-02-09 11:28:52 -080084 @ViewDebug.ExportedProperty(category = "launcher")
Winson Chungb745afb2015-03-02 11:51:23 -080085 private int mTextColor;
Tony17b7f9b2017-05-23 12:19:09 -070086 private boolean mIsIconVisible = true;
Winson Chung5f8afe62013-08-12 16:19:28 -070087
Tony Wickham1237df02017-02-24 08:59:36 -080088 private BadgeInfo mBadgeInfo;
89 private BadgeRenderer mBadgeRenderer;
Tony Wickham7092db02017-06-07 14:32:23 -070090 private IconPalette mBadgePalette;
Tony Wickham1237df02017-02-24 08:59:36 -080091 private float mBadgeScale;
92 private boolean mForceHideBadge;
93 private Point mTempSpaceForBadgeOffset = new Point();
94 private Rect mTempIconBounds = new Rect();
95
96 private static final Property<BubbleTextView, Float> BADGE_SCALE_PROPERTY
97 = new Property<BubbleTextView, Float>(Float.TYPE, "badgeScale") {
98 @Override
99 public Float get(BubbleTextView bubbleTextView) {
100 return bubbleTextView.mBadgeScale;
101 }
102
103 @Override
104 public void set(BubbleTextView bubbleTextView, Float value) {
105 bubbleTextView.mBadgeScale = value;
106 bubbleTextView.invalidate();
107 }
108 };
109
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700110 public static final Property<BubbleTextView, Integer> TEXT_ALPHA_PROPERTY
Tony8f402802017-06-16 17:24:54 -0700111 = new Property<BubbleTextView, Integer>(Integer.class, "textAlpha") {
112 @Override
113 public Integer get(BubbleTextView bubbleTextView) {
114 return bubbleTextView.getTextAlpha();
115 }
116
117 @Override
118 public void set(BubbleTextView bubbleTextView, Integer alpha) {
119 bubbleTextView.setTextAlpha(alpha);
120 }
121 };
122
Sunny Goyal4ffec482016-02-09 11:28:52 -0800123 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -0800124 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800125 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -0700126 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -0800127 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -0700128 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500129
Sunny Goyal34b65272015-03-11 16:56:52 -0700130 private IconLoadRequest mIconLoadRequest;
131
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800132 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700133 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134 }
135
136 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700137 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138 }
139
140 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
141 super(context, attrs, defStyle);
Andrew Sappersteinabef55a2016-06-19 12:49:00 -0700142 mLauncher = Launcher.getLauncher(context);
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700143 DeviceProfile grid = mLauncher.getDeviceProfile();
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700144 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Adam Cohen96bb7982014-07-07 11:58:56 -0700145
Adam Cohen96bb7982014-07-07 11:58:56 -0700146 TypedArray a = context.obtainStyledAttributes(attrs,
147 R.styleable.BubbleTextView, defStyle, 0);
Winson Chungb745afb2015-03-02 11:51:23 -0800148 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Winson Chung93f98ea2015-03-10 16:28:47 -0700149 mDeferShadowGenerationOnTouch =
150 a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700151
152 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
153 int defaultIconSize = grid.iconSizePx;
154 if (display == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700155 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Jon Miranda09660722017-06-14 14:20:14 -0700156 setCompoundDrawablePadding(grid.iconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700157 } else if (display == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700158 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
159 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700160 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700161 } else if (display == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700162 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700163 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700164 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700165 }
Winson1f064272016-07-18 17:18:02 -0700166 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700167
168 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
169 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700170 a.recycle();
171
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800172 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700173 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800174
Sunny Goyal10629b02016-09-01 12:50:11 -0700175 mOutlineHelper = HolographicOutlineHelper.getInstance(getContext());
Sunny Goyalae502842016-06-17 08:43:56 -0700176 setAccessibilityDelegate(mLauncher.getAccessibilityDelegate());
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700177
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800178 }
179
Jon Miranda52549442017-10-26 11:28:06 -0700180 /**
181 * Resets the view so it can be recycled.
182 */
183 public void reset() {
184 mBadgeInfo = null;
185 mBadgePalette = null;
186 mForceHideBadge = false;
187 }
188
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800189 public void applyFromShortcutInfo(ShortcutInfo info) {
190 applyFromShortcutInfo(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700191 }
192
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800193 public void applyFromShortcutInfo(ShortcutInfo info, boolean promiseStateChanged) {
194 applyIconAndLabel(info.iconBitmap, info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800195 setTag(info);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700196 if (promiseStateChanged || (info.hasPromiseIconUi())) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800197 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500198 }
Tony Wickham010d2552017-01-20 08:15:28 -0800199
Tony Wickham1e618492017-02-02 12:57:18 -0800200 applyBadgeState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800201 }
202
Sunny Goyal508da152014-08-14 10:53:27 -0700203 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700204 applyIconAndLabel(info.iconBitmap, info);
205
Winson Chung888b3a12015-03-13 11:14:16 -0700206 // We don't need to check the info since it's not a ShortcutInfo
207 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700208
209 // Verify high res immediately
210 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800211
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700212 if (info instanceof PromiseAppInfo) {
213 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
214 applyProgressLevel(promiseAppInfo.level);
215 }
Tony Wickham1e618492017-02-02 12:57:18 -0800216 applyBadgeState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700217 }
218
Sunny Goyal0e08f162015-05-12 11:32:39 -0700219 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700220 applyIconAndLabel(info.iconBitmap, info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700221 // We don't need to check the info since it's not a ShortcutInfo
222 super.setTag(info);
223
224 // Verify high res immediately
225 verifyHighRes();
226 }
227
Sunny Goyalf4204382016-07-13 10:46:07 -0700228 private void applyIconAndLabel(Bitmap icon, ItemInfo info) {
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800229 FastBitmapDrawable iconDrawable = DrawableFactory.get(getContext()).newIcon(icon, info);
Tony Wickham6b910a22016-11-08 10:40:34 -0800230 iconDrawable.setIsDisabled(info.isDisabled());
Sunny Goyalf4204382016-07-13 10:46:07 -0700231 setIcon(iconDrawable);
232 setText(info.title);
233 if (info.contentDescription != null) {
234 setContentDescription(info.isDisabled()
235 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
236 : info.contentDescription);
237 }
238 }
239
Winson Chung7501adf2015-06-02 11:24:28 -0700240 /**
241 * Overrides the default long press timeout.
242 */
243 public void setLongPressTimeout(int longPressTimeout) {
244 mLongPressHelper.setLongPressTimeout(longPressTimeout);
245 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700246
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800247 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700248 public void setTag(Object tag) {
249 if (tag != null) {
250 LauncherModel.checkItemInfo((ItemInfo) tag);
251 }
252 super.setTag(tag);
253 }
254
255 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800256 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700257 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800258 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800259 }
Sunny Goyal508da152014-08-14 10:53:27 -0700260 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800261
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800262 @Override
263 protected int[] onCreateDrawableState(int extraSpace) {
264 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
265 if (mStayPressed) {
266 mergeDrawableStates(drawableState, STATE_PRESSED);
267 }
268 return drawableState;
269 }
270
Winson Chungb745afb2015-03-02 11:51:23 -0800271 /** Returns the icon for this view. */
272 public Drawable getIcon() {
273 return mIcon;
274 }
275
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700276 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800277 public boolean onTouchEvent(MotionEvent event) {
278 // Call the superclass onTouchEvent first, because sometimes it changes the state to
279 // isPressed() on an ACTION_UP
280 boolean result = super.onTouchEvent(event);
281
Mady Melloref044dd2015-06-02 15:35:07 -0700282 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700283 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700284 mLongPressHelper.cancelLongPress();
285 result = true;
286 }
287
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800288 switch (event.getAction()) {
289 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700290 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800291 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
292 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700293 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700294 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800295 }
Winson Chung88f33452012-02-23 15:23:44 -0800296
Mady Melloref044dd2015-06-02 15:35:07 -0700297 // If we're in a stylus button press, don't check for long press.
298 if (!mStylusEventHelper.inStylusButtonPressed()) {
299 mLongPressHelper.postCheckForLongPress();
300 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800301 break;
302 case MotionEvent.ACTION_CANCEL:
303 case MotionEvent.ACTION_UP:
304 // If we've touched down and up on an item, and it's still not "pressed", then
305 // destroy the pressed outline
306 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700307 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800308 }
Winson Chung88f33452012-02-23 15:23:44 -0800309
310 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800311 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400312 case MotionEvent.ACTION_MOVE:
313 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
314 mLongPressHelper.cancelLongPress();
315 }
316 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800317 }
318 return result;
319 }
320
Michael Jurkaddd62e92011-02-16 17:49:14 -0800321 void setStayPressed(boolean stayPressed) {
322 mStayPressed = stayPressed;
323 if (!stayPressed) {
Sunny Goyal10629b02016-09-01 12:50:11 -0700324 HolographicOutlineHelper.getInstance(getContext()).recycleShadowBitmap(mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700325 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700326 } else {
327 if (mPressedBackground == null) {
328 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
329 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800330 }
Sunny Goyal508da152014-08-14 10:53:27 -0700331
332 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700333 ViewParent parent = getParent();
334 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
335 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
336 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700337 }
338
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800339 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800340 }
341
Sunny Goyal508da152014-08-14 10:53:27 -0700342 void clearPressedBackground() {
343 setPressed(false);
344 setStayPressed(false);
345 }
346
347 @Override
348 public boolean onKeyDown(int keyCode, KeyEvent event) {
349 if (super.onKeyDown(keyCode, event)) {
350 // Pre-create shadow so show immediately on click.
351 if (mPressedBackground == null) {
352 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700353 }
Sunny Goyal508da152014-08-14 10:53:27 -0700354 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700355 }
Sunny Goyal508da152014-08-14 10:53:27 -0700356 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800357 }
358
Sunny Goyal508da152014-08-14 10:53:27 -0700359 @Override
360 public boolean onKeyUp(int keyCode, KeyEvent event) {
361 // Unlike touch events, keypress event propagate pressed state change immediately,
362 // without waiting for onClickHandler to execute. Disable pressed state changes here
363 // to avoid flickering.
364 mIgnorePressedStateChange = true;
365 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700366
Sunny Goyal508da152014-08-14 10:53:27 -0700367 mPressedBackground = null;
368 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800369 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700370 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800371 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800372
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700373 @SuppressWarnings("wrongcall")
374 protected void drawWithoutBadge(Canvas canvas) {
375 super.onDraw(canvas);
376 }
377
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800378 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700379 public void onDraw(Canvas canvas) {
380 super.onDraw(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800381 drawBadgeIfNecessary(canvas);
382 }
383
384 /**
385 * Draws the icon badge in the top right corner of the icon bounds.
386 * @param canvas The canvas to draw to.
387 */
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700388 protected void drawBadgeIfNecessary(Canvas canvas) {
Tony Wickham1237df02017-02-24 08:59:36 -0800389 if (!mForceHideBadge && (hasBadge() || mBadgeScale > 0)) {
390 getIconBounds(mTempIconBounds);
391 mTempSpaceForBadgeOffset.set((getWidth() - mIconSize) / 2, getPaddingTop());
392 final int scrollX = getScrollX();
393 final int scrollY = getScrollY();
394 canvas.translate(scrollX, scrollY);
Tony Wickham7092db02017-06-07 14:32:23 -0700395 mBadgeRenderer.draw(canvas, mBadgePalette, mBadgeInfo, mTempIconBounds, mBadgeScale,
Tony Wickham1237df02017-02-24 08:59:36 -0800396 mTempSpaceForBadgeOffset);
397 canvas.translate(-scrollX, -scrollY);
398 }
399 }
400
401 public void forceHideBadge(boolean forceHideBadge) {
402 if (mForceHideBadge == forceHideBadge) {
403 return;
404 }
405 mForceHideBadge = forceHideBadge;
406
407 if (forceHideBadge) {
408 invalidate();
409 } else if (hasBadge()) {
410 ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, 0, 1).start();
411 }
412 }
413
414 private boolean hasBadge() {
Tony Wickham0530e8c2017-04-26 18:13:56 -0700415 return mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800416 }
417
418 public void getIconBounds(Rect outBounds) {
419 int top = getPaddingTop();
420 int left = (getWidth() - mIconSize) / 2;
421 int right = left + mIconSize;
422 int bottom = top + mIconSize;
423 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;
442 super.setTextColor(color);
443 }
444
Adam Cohen96bb7982014-07-07 11:58:56 -0700445 @Override
446 public void setTextColor(ColorStateList colors) {
447 mTextColor = colors.getDefaultColor();
448 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700449 }
450
Tony7308cde2017-06-27 22:38:33 -0700451 public boolean shouldTextBeVisible() {
452 // Text should be visible everywhere but the hotseat.
453 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
454 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
455 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
456 }
457
Winson Chung5f8afe62013-08-12 16:19:28 -0700458 public void setTextVisibility(boolean visible) {
Winson Chung5f8afe62013-08-12 16:19:28 -0700459 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700460 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700461 } else {
Tony8f402802017-06-16 17:24:54 -0700462 setTextAlpha(0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700463 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700464 }
465
Tony8f402802017-06-16 17:24:54 -0700466 private void setTextAlpha(int alpha) {
467 super.setTextColor(ColorUtils.setAlphaComponent(mTextColor, alpha));
468 }
469
470 private int getTextAlpha() {
471 return Color.alpha(getCurrentTextColor());
472 }
473
474 /**
475 * Creates an animator to fade the text in or out.
476 * @param fadeIn Whether the text should fade in or fade out.
477 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700478 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Tony7308cde2017-06-27 22:38:33 -0700479 int toAlpha = shouldTextBeVisible() && fadeIn ? Color.alpha(mTextColor) : 0;
480 return ObjectAnimator.ofInt(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700481 }
482
Winson Chungaffd7b42010-08-20 15:11:56 -0700483 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800484 public void cancelLongPress() {
485 super.cancelLongPress();
486
487 mLongPressHelper.cancelLongPress();
488 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500489
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800490 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700491 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400492 ShortcutInfo info = (ShortcutInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700493 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700494 final int progressLevel = isPromise ?
495 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
496 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700497
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700498 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
499 if (preloadDrawable != null && promiseStateChanged) {
500 preloadDrawable.maybePerformFinishedAnimation();
501 }
502 }
503 }
504
505 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
506 if (getTag() instanceof ItemInfoWithIcon) {
507 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
508 setContentDescription(progressLevel > 0
509 ? getContext().getString(R.string.app_downloading_title, info.title,
510 NumberFormat.getPercentInstance().format(progressLevel * 0.01))
511 : getContext().getString(R.string.app_waiting_download_title, info.title));
Sunny Goyalc469aad2015-10-01 11:24:23 -0700512
Winson Chungb745afb2015-03-02 11:51:23 -0800513 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700514 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800515 if (mIcon instanceof PreloadIconDrawable) {
516 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700517 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700518 } else {
Sunny Goyal96ac68a2017-02-02 16:37:21 -0800519 preloadDrawable = DrawableFactory.get(getContext())
520 .newPendingIcon(info.iconBitmap, getContext());
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700521 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700522 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700523 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700524 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700525 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400526 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700527 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400528 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700529
Tony Wickham1e618492017-02-02 12:57:18 -0800530 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800531 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickham1237df02017-02-24 08:59:36 -0800532 boolean wasBadged = mBadgeInfo != null;
Tony Wickham2fe09f22017-04-25 12:46:04 -0700533 mBadgeInfo = mLauncher.getPopupDataProvider().getBadgeInfoForItem(itemInfo);
534 boolean isBadged = mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800535 float newBadgeScale = isBadged ? 1f : 0;
Tony Wickham2fe09f22017-04-25 12:46:04 -0700536 mBadgeRenderer = mLauncher.getDeviceProfile().mBadgeRenderer;
Tony Wickham1237df02017-02-24 08:59:36 -0800537 if (wasBadged || isBadged) {
Tony Wickham7092db02017-06-07 14:32:23 -0700538 mBadgePalette = IconPalette.getBadgePalette(getResources());
539 if (mBadgePalette == null) {
540 mBadgePalette = ((FastBitmapDrawable) mIcon).getIconPalette();
541 }
Tony Wickham1237df02017-02-24 08:59:36 -0800542 // Animate when a badge is first added or when it is removed.
543 if (animate && (wasBadged ^ isBadged) && isShown()) {
544 ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, newBadgeScale).start();
545 } else {
546 mBadgeScale = newBadgeScale;
547 invalidate();
548 }
549 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800550 }
551 }
552
Tony Wickham7092db02017-06-07 14:32:23 -0700553 public IconPalette getBadgePalette() {
554 return mBadgePalette;
555 }
556
Winson Chungb745afb2015-03-02 11:51:23 -0800557 /**
558 * Sets the icon for this view based on the layout direction.
559 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700560 private void setIcon(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800561 mIcon = icon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800562 mIcon.setBounds(0, 0, mIconSize, mIconSize);
Tony17b7f9b2017-05-23 12:19:09 -0700563 if (mIsIconVisible) {
564 applyCompoundDrawables(mIcon);
565 }
566 }
567
568 public void setIconVisible(boolean visible) {
569 mIsIconVisible = visible;
570 mDisableRelayout = true;
571 Drawable icon = mIcon;
572 if (!visible) {
573 icon = new ColorDrawable(Color.TRANSPARENT);
574 icon.setBounds(0, 0, mIconSize, mIconSize);
575 }
576 applyCompoundDrawables(icon);
577 mDisableRelayout = false;
Tony Wickham377ed3f2016-07-20 15:21:04 -0700578 }
579
580 protected void applyCompoundDrawables(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800581 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800582 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800583 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700584 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800585 }
Winson Chungb745afb2015-03-02 11:51:23 -0800586 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700587
Sunny Goyal69b75642015-05-15 17:00:24 -0700588 @Override
589 public void requestLayout() {
590 if (!mDisableRelayout) {
591 super.requestLayout();
592 }
593 }
594
Sunny Goyal34b65272015-03-11 16:56:52 -0700595 /**
596 * Applies the item info if it is same as what the view is pointing to currently.
597 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800598 @Override
599 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700600 if (getTag() == info) {
601 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700602 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700603
Jon Miranda7f522a22017-07-28 11:56:47 -0700604 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
605 info.iconBitmap.prepareToDraw();
606
Sunny Goyal34b65272015-03-11 16:56:52 -0700607 if (info instanceof AppInfo) {
608 applyFromApplicationInfo((AppInfo) info);
609 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800610 applyFromShortcutInfo((ShortcutInfo) info);
Jon Miranda529af302017-02-28 14:18:54 -0800611 FolderIconPreviewVerifier verifier =
612 new FolderIconPreviewVerifier(mLauncher.getDeviceProfile().inv);
613 if (verifier.isItemInPreview(info.rank) && (info.container >= 0)) {
Sunny Goyal317698b2015-07-29 11:45:41 -0700614 View folderIcon =
615 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
616 if (folderIcon != null) {
617 folderIcon.invalidate();
618 }
619 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700620 } else if (info instanceof PackageItemInfo) {
621 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700622 }
Winsonc0880492015-08-21 11:16:27 -0700623
Sunny Goyal69b75642015-05-15 17:00:24 -0700624 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700625 }
626 }
627
628 /**
629 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
630 */
631 public void verifyHighRes() {
632 if (mIconLoadRequest != null) {
633 mIconLoadRequest.cancel();
634 mIconLoadRequest = null;
635 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800636 if (getTag() instanceof ItemInfoWithIcon) {
637 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal0e08f162015-05-12 11:32:39 -0700638 if (info.usingLowResIcon) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800639 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700640 .updateIconInBackground(BubbleTextView.this, info);
641 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700642 }
643 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700644
Jon Miranda47170112017-03-03 14:57:14 -0800645 public int getIconSize() {
646 return mIconSize;
647 }
648
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700649 /**
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700650 * Interface to be implemented by the grand parent to allow click shadow effect.
651 */
Winsonc0880492015-08-21 11:16:27 -0700652 public interface BubbleTextShadowHandler {
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700653 void setPressedIcon(BubbleTextView icon, Bitmap background);
654 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800655}