blob: 2306b1bf3e793c6c1734f095861ff69e2718e390 [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
Tony8f402802017-06-16 17:24:54 -070019import android.animation.Animator;
Tony Wickham1237df02017-02-24 08:59:36 -080020import android.animation.ObjectAnimator;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070022import android.content.res.ColorStateList;
Adam Cohen96bb7982014-07-07 11:58:56 -070023import android.content.res.TypedArray;
Michael Jurka67b2f6c2010-11-17 12:33:46 -080024import android.graphics.Bitmap;
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;
Tony8f402802017-06-16 17:24:54 -070032import android.support.v4.graphics.ColorUtils;
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;
Sunny Goyal4b6eb262015-05-14 19:24:40 -070041import android.view.ViewParent;
Michael Jurkabdb5c532011-02-01 15:05:06 -080042import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070043
Sunny Goyal34b65272015-03-11 16:56:52 -070044import com.android.launcher3.IconCache.IconLoadRequest;
Sunny Goyal2d7cca12017-01-03 16:52:43 -080045import com.android.launcher3.IconCache.ItemInfoUpdateReceiver;
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;
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;
Tony Wickham1bce7fd2016-04-28 17:39:03 -070073 private OnLongClickListener mOnLongClickListener;
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
Tony8f402802017-06-16 17:24:54 -0700110 private static final Property<BubbleTextView, Integer> TEXT_ALPHA_PROPERTY
111 = 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
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800180 public void applyFromShortcutInfo(ShortcutInfo info) {
181 applyFromShortcutInfo(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700182 }
183
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800184 public void applyFromShortcutInfo(ShortcutInfo info, boolean promiseStateChanged) {
185 applyIconAndLabel(info.iconBitmap, info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800186 setTag(info);
Sunny Goyal34942622014-08-29 17:20:55 -0700187 if (promiseStateChanged || info.isPromise()) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800188 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500189 }
Tony Wickham010d2552017-01-20 08:15:28 -0800190
Tony Wickham1e618492017-02-02 12:57:18 -0800191 applyBadgeState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800192 }
193
Sunny Goyal508da152014-08-14 10:53:27 -0700194 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700195 applyIconAndLabel(info.iconBitmap, info);
196
Winson Chung888b3a12015-03-13 11:14:16 -0700197 // We don't need to check the info since it's not a ShortcutInfo
198 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700199
200 // Verify high res immediately
201 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800202
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700203 if (info instanceof PromiseAppInfo) {
204 PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info;
205 applyProgressLevel(promiseAppInfo.level);
206 }
Tony Wickham1e618492017-02-02 12:57:18 -0800207 applyBadgeState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700208 }
209
Sunny Goyal0e08f162015-05-12 11:32:39 -0700210 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700211 applyIconAndLabel(info.iconBitmap, info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700212 // We don't need to check the info since it's not a ShortcutInfo
213 super.setTag(info);
214
215 // Verify high res immediately
216 verifyHighRes();
217 }
218
Sunny Goyalf4204382016-07-13 10:46:07 -0700219 private void applyIconAndLabel(Bitmap icon, ItemInfo info) {
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800220 FastBitmapDrawable iconDrawable = DrawableFactory.get(getContext()).newIcon(icon, info);
Tony Wickham6b910a22016-11-08 10:40:34 -0800221 iconDrawable.setIsDisabled(info.isDisabled());
Sunny Goyalf4204382016-07-13 10:46:07 -0700222 setIcon(iconDrawable);
223 setText(info.title);
224 if (info.contentDescription != null) {
225 setContentDescription(info.isDisabled()
226 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
227 : info.contentDescription);
228 }
229 }
230
Winson Chung7501adf2015-06-02 11:24:28 -0700231 /**
232 * Overrides the default long press timeout.
233 */
234 public void setLongPressTimeout(int longPressTimeout) {
235 mLongPressHelper.setLongPressTimeout(longPressTimeout);
236 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700237
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800238 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700239 public void setTag(Object tag) {
240 if (tag != null) {
241 LauncherModel.checkItemInfo((ItemInfo) tag);
242 }
243 super.setTag(tag);
244 }
245
246 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800247 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700248 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800249 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800250 }
Sunny Goyal508da152014-08-14 10:53:27 -0700251 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800252
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800253 @Override
254 protected int[] onCreateDrawableState(int extraSpace) {
255 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
256 if (mStayPressed) {
257 mergeDrawableStates(drawableState, STATE_PRESSED);
258 }
259 return drawableState;
260 }
261
Winson Chungb745afb2015-03-02 11:51:23 -0800262 /** Returns the icon for this view. */
263 public Drawable getIcon() {
264 return mIcon;
265 }
266
267 /** Returns whether the layout is horizontal. */
268 public boolean isLayoutHorizontal() {
269 return mLayoutHorizontal;
270 }
271
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800272 @Override
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700273 public void setOnLongClickListener(OnLongClickListener l) {
274 super.setOnLongClickListener(l);
275 mOnLongClickListener = l;
276 }
277
278 public OnLongClickListener getOnLongClickListener() {
279 return mOnLongClickListener;
280 }
281
282 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800283 public boolean onTouchEvent(MotionEvent event) {
284 // Call the superclass onTouchEvent first, because sometimes it changes the state to
285 // isPressed() on an ACTION_UP
286 boolean result = super.onTouchEvent(event);
287
Mady Melloref044dd2015-06-02 15:35:07 -0700288 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700289 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700290 mLongPressHelper.cancelLongPress();
291 result = true;
292 }
293
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800294 switch (event.getAction()) {
295 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700296 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800297 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
298 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700299 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700300 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800301 }
Winson Chung88f33452012-02-23 15:23:44 -0800302
Mady Melloref044dd2015-06-02 15:35:07 -0700303 // If we're in a stylus button press, don't check for long press.
304 if (!mStylusEventHelper.inStylusButtonPressed()) {
305 mLongPressHelper.postCheckForLongPress();
306 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800307 break;
308 case MotionEvent.ACTION_CANCEL:
309 case MotionEvent.ACTION_UP:
310 // If we've touched down and up on an item, and it's still not "pressed", then
311 // destroy the pressed outline
312 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700313 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800314 }
Winson Chung88f33452012-02-23 15:23:44 -0800315
316 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800317 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400318 case MotionEvent.ACTION_MOVE:
319 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
320 mLongPressHelper.cancelLongPress();
321 }
322 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800323 }
324 return result;
325 }
326
Michael Jurkaddd62e92011-02-16 17:49:14 -0800327 void setStayPressed(boolean stayPressed) {
328 mStayPressed = stayPressed;
329 if (!stayPressed) {
Sunny Goyal10629b02016-09-01 12:50:11 -0700330 HolographicOutlineHelper.getInstance(getContext()).recycleShadowBitmap(mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700331 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700332 } else {
333 if (mPressedBackground == null) {
334 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
335 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800336 }
Sunny Goyal508da152014-08-14 10:53:27 -0700337
338 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700339 ViewParent parent = getParent();
340 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
341 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
342 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700343 }
344
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800345 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800346 }
347
Sunny Goyal508da152014-08-14 10:53:27 -0700348 void clearPressedBackground() {
349 setPressed(false);
350 setStayPressed(false);
351 }
352
353 @Override
354 public boolean onKeyDown(int keyCode, KeyEvent event) {
355 if (super.onKeyDown(keyCode, event)) {
356 // Pre-create shadow so show immediately on click.
357 if (mPressedBackground == null) {
358 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700359 }
Sunny Goyal508da152014-08-14 10:53:27 -0700360 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700361 }
Sunny Goyal508da152014-08-14 10:53:27 -0700362 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800363 }
364
Sunny Goyal508da152014-08-14 10:53:27 -0700365 @Override
366 public boolean onKeyUp(int keyCode, KeyEvent event) {
367 // Unlike touch events, keypress event propagate pressed state change immediately,
368 // without waiting for onClickHandler to execute. Disable pressed state changes here
369 // to avoid flickering.
370 mIgnorePressedStateChange = true;
371 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700372
Sunny Goyal508da152014-08-14 10:53:27 -0700373 mPressedBackground = null;
374 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800375 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700376 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800377 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800378
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700379 @SuppressWarnings("wrongcall")
380 protected void drawWithoutBadge(Canvas canvas) {
381 super.onDraw(canvas);
382 }
383
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800384 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700385 public void onDraw(Canvas canvas) {
386 super.onDraw(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800387 drawBadgeIfNecessary(canvas);
388 }
389
390 /**
391 * Draws the icon badge in the top right corner of the icon bounds.
392 * @param canvas The canvas to draw to.
393 */
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700394 protected void drawBadgeIfNecessary(Canvas canvas) {
Tony Wickham1237df02017-02-24 08:59:36 -0800395 if (!mForceHideBadge && (hasBadge() || mBadgeScale > 0)) {
396 getIconBounds(mTempIconBounds);
397 mTempSpaceForBadgeOffset.set((getWidth() - mIconSize) / 2, getPaddingTop());
398 final int scrollX = getScrollX();
399 final int scrollY = getScrollY();
400 canvas.translate(scrollX, scrollY);
Tony Wickham7092db02017-06-07 14:32:23 -0700401 mBadgeRenderer.draw(canvas, mBadgePalette, mBadgeInfo, mTempIconBounds, mBadgeScale,
Tony Wickham1237df02017-02-24 08:59:36 -0800402 mTempSpaceForBadgeOffset);
403 canvas.translate(-scrollX, -scrollY);
404 }
405 }
406
407 public void forceHideBadge(boolean forceHideBadge) {
408 if (mForceHideBadge == forceHideBadge) {
409 return;
410 }
411 mForceHideBadge = forceHideBadge;
412
413 if (forceHideBadge) {
414 invalidate();
415 } else if (hasBadge()) {
416 ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, 0, 1).start();
417 }
418 }
419
420 private boolean hasBadge() {
Tony Wickham0530e8c2017-04-26 18:13:56 -0700421 return mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800422 }
423
424 public void getIconBounds(Rect outBounds) {
425 int top = getPaddingTop();
426 int left = (getWidth() - mIconSize) / 2;
427 int right = left + mIconSize;
428 int bottom = top + mIconSize;
429 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800430 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400431
432 @Override
Winson1f064272016-07-18 17:18:02 -0700433 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
434 if (mCenterVertically) {
435 Paint.FontMetrics fm = getPaint().getFontMetrics();
436 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
437 (int) Math.ceil(fm.bottom - fm.top);
438 int height = MeasureSpec.getSize(heightMeasureSpec);
439 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
440 getPaddingBottom());
441 }
442 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
443 }
444
445 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700446 public void setTextColor(int color) {
447 mTextColor = color;
448 super.setTextColor(color);
449 }
450
Adam Cohen96bb7982014-07-07 11:58:56 -0700451 @Override
452 public void setTextColor(ColorStateList colors) {
453 mTextColor = colors.getDefaultColor();
454 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700455 }
456
Winson Chung5f8afe62013-08-12 16:19:28 -0700457 public void setTextVisibility(boolean visible) {
Winson Chung5f8afe62013-08-12 16:19:28 -0700458 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700459 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700460 } else {
Tony8f402802017-06-16 17:24:54 -0700461 setTextAlpha(0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700462 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700463 }
464
Tony8f402802017-06-16 17:24:54 -0700465 private void setTextAlpha(int alpha) {
466 super.setTextColor(ColorUtils.setAlphaComponent(mTextColor, alpha));
467 }
468
469 private int getTextAlpha() {
470 return Color.alpha(getCurrentTextColor());
471 }
472
473 /**
474 * Creates an animator to fade the text in or out.
475 * @param fadeIn Whether the text should fade in or fade out.
476 */
477 public Animator createTextAlphaAnimator(boolean fadeIn) {
478 return ObjectAnimator.ofInt(this, TEXT_ALPHA_PROPERTY, fadeIn ? Color.alpha(mTextColor) : 0);
479 }
480
Winson Chungaffd7b42010-08-20 15:11:56 -0700481 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800482 public void cancelLongPress() {
483 super.cancelLongPress();
484
485 mLongPressHelper.cancelLongPress();
486 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500487
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800488 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700489 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400490 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700491 final boolean isPromise = info.isPromise();
492 final int progressLevel = isPromise ?
493 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
494 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700495
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700496 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
497 if (preloadDrawable != null && promiseStateChanged) {
498 preloadDrawable.maybePerformFinishedAnimation();
499 }
500 }
501 }
502
503 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
504 if (getTag() instanceof ItemInfoWithIcon) {
505 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
506 setContentDescription(progressLevel > 0
507 ? getContext().getString(R.string.app_downloading_title, info.title,
508 NumberFormat.getPercentInstance().format(progressLevel * 0.01))
509 : getContext().getString(R.string.app_waiting_download_title, info.title));
Sunny Goyalc469aad2015-10-01 11:24:23 -0700510
Winson Chungb745afb2015-03-02 11:51:23 -0800511 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700512 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800513 if (mIcon instanceof PreloadIconDrawable) {
514 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700515 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700516 } else {
Sunny Goyal96ac68a2017-02-02 16:37:21 -0800517 preloadDrawable = DrawableFactory.get(getContext())
518 .newPendingIcon(info.iconBitmap, getContext());
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700519 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700520 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700521 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700522 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700523 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400524 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700525 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400526 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700527
Tony Wickham1e618492017-02-02 12:57:18 -0800528 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800529 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickham1237df02017-02-24 08:59:36 -0800530 boolean wasBadged = mBadgeInfo != null;
Tony Wickham2fe09f22017-04-25 12:46:04 -0700531 mBadgeInfo = mLauncher.getPopupDataProvider().getBadgeInfoForItem(itemInfo);
532 boolean isBadged = mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800533 float newBadgeScale = isBadged ? 1f : 0;
Tony Wickham2fe09f22017-04-25 12:46:04 -0700534 mBadgeRenderer = mLauncher.getDeviceProfile().mBadgeRenderer;
Tony Wickham1237df02017-02-24 08:59:36 -0800535 if (wasBadged || isBadged) {
Tony Wickham7092db02017-06-07 14:32:23 -0700536 mBadgePalette = IconPalette.getBadgePalette(getResources());
537 if (mBadgePalette == null) {
538 mBadgePalette = ((FastBitmapDrawable) mIcon).getIconPalette();
539 }
Tony Wickham1237df02017-02-24 08:59:36 -0800540 // Animate when a badge is first added or when it is removed.
541 if (animate && (wasBadged ^ isBadged) && isShown()) {
542 ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, newBadgeScale).start();
543 } else {
544 mBadgeScale = newBadgeScale;
545 invalidate();
546 }
547 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800548 }
549 }
550
Tony Wickham7092db02017-06-07 14:32:23 -0700551 public IconPalette getBadgePalette() {
552 return mBadgePalette;
553 }
554
Winson Chungb745afb2015-03-02 11:51:23 -0800555 /**
556 * Sets the icon for this view based on the layout direction.
557 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700558 private void setIcon(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800559 mIcon = icon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800560 mIcon.setBounds(0, 0, mIconSize, mIconSize);
Tony17b7f9b2017-05-23 12:19:09 -0700561 if (mIsIconVisible) {
562 applyCompoundDrawables(mIcon);
563 }
564 }
565
566 public void setIconVisible(boolean visible) {
567 mIsIconVisible = visible;
568 mDisableRelayout = true;
569 Drawable icon = mIcon;
570 if (!visible) {
571 icon = new ColorDrawable(Color.TRANSPARENT);
572 icon.setBounds(0, 0, mIconSize, mIconSize);
573 }
574 applyCompoundDrawables(icon);
575 mDisableRelayout = false;
Tony Wickham377ed3f2016-07-20 15:21:04 -0700576 }
577
578 protected void applyCompoundDrawables(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800579 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800580 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800581 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700582 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800583 }
Winson Chungb745afb2015-03-02 11:51:23 -0800584 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700585
Sunny Goyal69b75642015-05-15 17:00:24 -0700586 @Override
587 public void requestLayout() {
588 if (!mDisableRelayout) {
589 super.requestLayout();
590 }
591 }
592
Sunny Goyal34b65272015-03-11 16:56:52 -0700593 /**
594 * Applies the item info if it is same as what the view is pointing to currently.
595 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800596 @Override
597 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700598 if (getTag() == info) {
599 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700600 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700601
Sunny Goyal34b65272015-03-11 16:56:52 -0700602 if (info instanceof AppInfo) {
603 applyFromApplicationInfo((AppInfo) info);
604 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800605 applyFromShortcutInfo((ShortcutInfo) info);
Jon Miranda529af302017-02-28 14:18:54 -0800606 FolderIconPreviewVerifier verifier =
607 new FolderIconPreviewVerifier(mLauncher.getDeviceProfile().inv);
608 if (verifier.isItemInPreview(info.rank) && (info.container >= 0)) {
Sunny Goyal317698b2015-07-29 11:45:41 -0700609 View folderIcon =
610 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
611 if (folderIcon != null) {
612 folderIcon.invalidate();
613 }
614 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700615 } else if (info instanceof PackageItemInfo) {
616 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700617 }
Winsonc0880492015-08-21 11:16:27 -0700618
Sunny Goyal69b75642015-05-15 17:00:24 -0700619 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700620 }
621 }
622
623 /**
624 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
625 */
626 public void verifyHighRes() {
627 if (mIconLoadRequest != null) {
628 mIconLoadRequest.cancel();
629 mIconLoadRequest = null;
630 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800631 if (getTag() instanceof ItemInfoWithIcon) {
632 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal0e08f162015-05-12 11:32:39 -0700633 if (info.usingLowResIcon) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800634 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700635 .updateIconInBackground(BubbleTextView.this, info);
636 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700637 }
638 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700639
Jon Miranda47170112017-03-03 14:57:14 -0800640 public int getIconSize() {
641 return mIconSize;
642 }
643
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700644 /**
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700645 * Interface to be implemented by the grand parent to allow click shadow effect.
646 */
Winsonc0880492015-08-21 11:16:27 -0700647 public interface BubbleTextShadowHandler {
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700648 void setPressedIcon(BubbleTextView icon, Bitmap background);
649 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800650}