blob: 485125e03e900fa1a3230f054035fd1fd6395617 [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
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);
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700187 if (promiseStateChanged || (info.hasPromiseIconUi())) {
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
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700267 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800268 public boolean onTouchEvent(MotionEvent event) {
269 // Call the superclass onTouchEvent first, because sometimes it changes the state to
270 // isPressed() on an ACTION_UP
271 boolean result = super.onTouchEvent(event);
272
Mady Melloref044dd2015-06-02 15:35:07 -0700273 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700274 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700275 mLongPressHelper.cancelLongPress();
276 result = true;
277 }
278
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800279 switch (event.getAction()) {
280 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700281 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800282 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
283 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700284 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700285 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800286 }
Winson Chung88f33452012-02-23 15:23:44 -0800287
Mady Melloref044dd2015-06-02 15:35:07 -0700288 // If we're in a stylus button press, don't check for long press.
289 if (!mStylusEventHelper.inStylusButtonPressed()) {
290 mLongPressHelper.postCheckForLongPress();
291 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800292 break;
293 case MotionEvent.ACTION_CANCEL:
294 case MotionEvent.ACTION_UP:
295 // If we've touched down and up on an item, and it's still not "pressed", then
296 // destroy the pressed outline
297 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700298 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800299 }
Winson Chung88f33452012-02-23 15:23:44 -0800300
301 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800302 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400303 case MotionEvent.ACTION_MOVE:
304 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
305 mLongPressHelper.cancelLongPress();
306 }
307 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800308 }
309 return result;
310 }
311
Michael Jurkaddd62e92011-02-16 17:49:14 -0800312 void setStayPressed(boolean stayPressed) {
313 mStayPressed = stayPressed;
314 if (!stayPressed) {
Sunny Goyal10629b02016-09-01 12:50:11 -0700315 HolographicOutlineHelper.getInstance(getContext()).recycleShadowBitmap(mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700316 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700317 } else {
318 if (mPressedBackground == null) {
319 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
320 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800321 }
Sunny Goyal508da152014-08-14 10:53:27 -0700322
323 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700324 ViewParent parent = getParent();
325 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
326 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
327 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700328 }
329
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800330 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800331 }
332
Sunny Goyal508da152014-08-14 10:53:27 -0700333 void clearPressedBackground() {
334 setPressed(false);
335 setStayPressed(false);
336 }
337
338 @Override
339 public boolean onKeyDown(int keyCode, KeyEvent event) {
340 if (super.onKeyDown(keyCode, event)) {
341 // Pre-create shadow so show immediately on click.
342 if (mPressedBackground == null) {
343 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700344 }
Sunny Goyal508da152014-08-14 10:53:27 -0700345 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700346 }
Sunny Goyal508da152014-08-14 10:53:27 -0700347 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800348 }
349
Sunny Goyal508da152014-08-14 10:53:27 -0700350 @Override
351 public boolean onKeyUp(int keyCode, KeyEvent event) {
352 // Unlike touch events, keypress event propagate pressed state change immediately,
353 // without waiting for onClickHandler to execute. Disable pressed state changes here
354 // to avoid flickering.
355 mIgnorePressedStateChange = true;
356 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700357
Sunny Goyal508da152014-08-14 10:53:27 -0700358 mPressedBackground = null;
359 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800360 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700361 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800362 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800363
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700364 @SuppressWarnings("wrongcall")
365 protected void drawWithoutBadge(Canvas canvas) {
366 super.onDraw(canvas);
367 }
368
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800369 @Override
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700370 public void onDraw(Canvas canvas) {
371 super.onDraw(canvas);
Tony Wickham1237df02017-02-24 08:59:36 -0800372 drawBadgeIfNecessary(canvas);
373 }
374
375 /**
376 * Draws the icon badge in the top right corner of the icon bounds.
377 * @param canvas The canvas to draw to.
378 */
Sunny Goyal9314b7c2017-06-23 10:36:27 -0700379 protected void drawBadgeIfNecessary(Canvas canvas) {
Tony Wickham1237df02017-02-24 08:59:36 -0800380 if (!mForceHideBadge && (hasBadge() || mBadgeScale > 0)) {
381 getIconBounds(mTempIconBounds);
382 mTempSpaceForBadgeOffset.set((getWidth() - mIconSize) / 2, getPaddingTop());
383 final int scrollX = getScrollX();
384 final int scrollY = getScrollY();
385 canvas.translate(scrollX, scrollY);
Tony Wickham7092db02017-06-07 14:32:23 -0700386 mBadgeRenderer.draw(canvas, mBadgePalette, mBadgeInfo, mTempIconBounds, mBadgeScale,
Tony Wickham1237df02017-02-24 08:59:36 -0800387 mTempSpaceForBadgeOffset);
388 canvas.translate(-scrollX, -scrollY);
389 }
390 }
391
392 public void forceHideBadge(boolean forceHideBadge) {
393 if (mForceHideBadge == forceHideBadge) {
394 return;
395 }
396 mForceHideBadge = forceHideBadge;
397
398 if (forceHideBadge) {
399 invalidate();
400 } else if (hasBadge()) {
401 ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, 0, 1).start();
402 }
403 }
404
405 private boolean hasBadge() {
Tony Wickham0530e8c2017-04-26 18:13:56 -0700406 return mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800407 }
408
409 public void getIconBounds(Rect outBounds) {
410 int top = getPaddingTop();
411 int left = (getWidth() - mIconSize) / 2;
412 int right = left + mIconSize;
413 int bottom = top + mIconSize;
414 outBounds.set(left, top, right, bottom);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800415 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400416
417 @Override
Winson1f064272016-07-18 17:18:02 -0700418 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
419 if (mCenterVertically) {
420 Paint.FontMetrics fm = getPaint().getFontMetrics();
421 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
422 (int) Math.ceil(fm.bottom - fm.top);
423 int height = MeasureSpec.getSize(heightMeasureSpec);
424 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
425 getPaddingBottom());
426 }
427 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
428 }
429
430 @Override
Adam Cohen477828c2013-09-20 12:05:49 -0700431 public void setTextColor(int color) {
432 mTextColor = color;
433 super.setTextColor(color);
434 }
435
Adam Cohen96bb7982014-07-07 11:58:56 -0700436 @Override
437 public void setTextColor(ColorStateList colors) {
438 mTextColor = colors.getDefaultColor();
439 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700440 }
441
Tony7308cde2017-06-27 22:38:33 -0700442 public boolean shouldTextBeVisible() {
443 // Text should be visible everywhere but the hotseat.
444 Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag();
445 ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null;
446 return info == null || info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT;
447 }
448
Winson Chung5f8afe62013-08-12 16:19:28 -0700449 public void setTextVisibility(boolean visible) {
Winson Chung5f8afe62013-08-12 16:19:28 -0700450 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700451 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700452 } else {
Tony8f402802017-06-16 17:24:54 -0700453 setTextAlpha(0);
Winson Chung5f8afe62013-08-12 16:19:28 -0700454 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700455 }
456
Tony8f402802017-06-16 17:24:54 -0700457 private void setTextAlpha(int alpha) {
458 super.setTextColor(ColorUtils.setAlphaComponent(mTextColor, alpha));
459 }
460
461 private int getTextAlpha() {
462 return Color.alpha(getCurrentTextColor());
463 }
464
465 /**
466 * Creates an animator to fade the text in or out.
467 * @param fadeIn Whether the text should fade in or fade out.
468 */
Sunny Goyal4e5a8782017-06-23 09:34:06 -0700469 public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) {
Tony7308cde2017-06-27 22:38:33 -0700470 int toAlpha = shouldTextBeVisible() && fadeIn ? Color.alpha(mTextColor) : 0;
471 return ObjectAnimator.ofInt(this, TEXT_ALPHA_PROPERTY, toAlpha);
Tony8f402802017-06-16 17:24:54 -0700472 }
473
Winson Chungaffd7b42010-08-20 15:11:56 -0700474 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800475 public void cancelLongPress() {
476 super.cancelLongPress();
477
478 mLongPressHelper.cancelLongPress();
479 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500480
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800481 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700482 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400483 ShortcutInfo info = (ShortcutInfo) getTag();
Mario Bertschler8ff9e1d2017-08-08 16:26:18 -0700484 final boolean isPromise = info.hasPromiseIconUi();
Sunny Goyal34942622014-08-29 17:20:55 -0700485 final int progressLevel = isPromise ?
486 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
487 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700488
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700489 PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel);
490 if (preloadDrawable != null && promiseStateChanged) {
491 preloadDrawable.maybePerformFinishedAnimation();
492 }
493 }
494 }
495
496 public PreloadIconDrawable applyProgressLevel(int progressLevel) {
497 if (getTag() instanceof ItemInfoWithIcon) {
498 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Mario Bertschler230612f2017-09-27 17:05:21 -0700499 if (progressLevel >= 100) {
500 setContentDescription(info.contentDescription != null
501 ? info.contentDescription : "");
502 } else if (progressLevel > 0) {
503 setContentDescription(getContext()
504 .getString(R.string.app_downloading_title, info.title,
505 NumberFormat.getPercentInstance().format(progressLevel * 0.01)));
506 } else {
507 setContentDescription(getContext()
508 .getString(R.string.app_waiting_download_title, info.title));
509 }
Winson Chungb745afb2015-03-02 11:51:23 -0800510 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700511 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800512 if (mIcon instanceof PreloadIconDrawable) {
513 preloadDrawable = (PreloadIconDrawable) mIcon;
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700514 preloadDrawable.setLevel(progressLevel);
Sunny Goyale755d462014-07-22 13:48:29 -0700515 } else {
Sunny Goyal96ac68a2017-02-02 16:37:21 -0800516 preloadDrawable = DrawableFactory.get(getContext())
517 .newPendingIcon(info.iconBitmap, getContext());
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700518 preloadDrawable.setLevel(progressLevel);
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700519 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700520 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700521 return preloadDrawable;
Sunny Goyale755d462014-07-22 13:48:29 -0700522 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400523 }
Mario Bertschler08ffaae2017-03-20 11:30:27 -0700524 return null;
Chris Wren40c5ed32014-06-24 18:24:23 -0400525 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700526
Tony Wickham1e618492017-02-02 12:57:18 -0800527 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800528 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickham1237df02017-02-24 08:59:36 -0800529 boolean wasBadged = mBadgeInfo != null;
Tony Wickham2fe09f22017-04-25 12:46:04 -0700530 mBadgeInfo = mLauncher.getPopupDataProvider().getBadgeInfoForItem(itemInfo);
531 boolean isBadged = mBadgeInfo != null;
Tony Wickham1237df02017-02-24 08:59:36 -0800532 float newBadgeScale = isBadged ? 1f : 0;
Tony Wickham2fe09f22017-04-25 12:46:04 -0700533 mBadgeRenderer = mLauncher.getDeviceProfile().mBadgeRenderer;
Tony Wickham1237df02017-02-24 08:59:36 -0800534 if (wasBadged || isBadged) {
Tony Wickham7092db02017-06-07 14:32:23 -0700535 mBadgePalette = IconPalette.getBadgePalette(getResources());
536 if (mBadgePalette == null) {
537 mBadgePalette = ((FastBitmapDrawable) mIcon).getIconPalette();
538 }
Tony Wickham1237df02017-02-24 08:59:36 -0800539 // Animate when a badge is first added or when it is removed.
540 if (animate && (wasBadged ^ isBadged) && isShown()) {
541 ObjectAnimator.ofFloat(this, BADGE_SCALE_PROPERTY, newBadgeScale).start();
542 } else {
543 mBadgeScale = newBadgeScale;
544 invalidate();
545 }
546 }
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800547 }
548 }
549
Tony Wickham7092db02017-06-07 14:32:23 -0700550 public IconPalette getBadgePalette() {
551 return mBadgePalette;
552 }
553
Winson Chungb745afb2015-03-02 11:51:23 -0800554 /**
555 * Sets the icon for this view based on the layout direction.
556 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700557 private void setIcon(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800558 mIcon = icon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800559 mIcon.setBounds(0, 0, mIconSize, mIconSize);
Tony17b7f9b2017-05-23 12:19:09 -0700560 if (mIsIconVisible) {
561 applyCompoundDrawables(mIcon);
562 }
563 }
564
565 public void setIconVisible(boolean visible) {
566 mIsIconVisible = visible;
567 mDisableRelayout = true;
568 Drawable icon = mIcon;
569 if (!visible) {
570 icon = new ColorDrawable(Color.TRANSPARENT);
571 icon.setBounds(0, 0, mIconSize, mIconSize);
572 }
573 applyCompoundDrawables(icon);
574 mDisableRelayout = false;
Tony Wickham377ed3f2016-07-20 15:21:04 -0700575 }
576
577 protected void applyCompoundDrawables(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800578 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800579 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800580 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700581 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800582 }
Winson Chungb745afb2015-03-02 11:51:23 -0800583 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700584
Sunny Goyal69b75642015-05-15 17:00:24 -0700585 @Override
586 public void requestLayout() {
587 if (!mDisableRelayout) {
588 super.requestLayout();
589 }
590 }
591
Sunny Goyal34b65272015-03-11 16:56:52 -0700592 /**
593 * Applies the item info if it is same as what the view is pointing to currently.
594 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800595 @Override
596 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700597 if (getTag() == info) {
598 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700599 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700600
Jon Miranda7f522a22017-07-28 11:56:47 -0700601 // Optimization: Starting in N, pre-uploads the bitmap to RenderThread.
602 info.iconBitmap.prepareToDraw();
603
Sunny Goyal34b65272015-03-11 16:56:52 -0700604 if (info instanceof AppInfo) {
605 applyFromApplicationInfo((AppInfo) info);
606 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800607 applyFromShortcutInfo((ShortcutInfo) info);
Jon Miranda529af302017-02-28 14:18:54 -0800608 FolderIconPreviewVerifier verifier =
609 new FolderIconPreviewVerifier(mLauncher.getDeviceProfile().inv);
610 if (verifier.isItemInPreview(info.rank) && (info.container >= 0)) {
Sunny Goyal317698b2015-07-29 11:45:41 -0700611 View folderIcon =
612 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
613 if (folderIcon != null) {
614 folderIcon.invalidate();
615 }
616 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700617 } else if (info instanceof PackageItemInfo) {
618 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700619 }
Winsonc0880492015-08-21 11:16:27 -0700620
Sunny Goyal69b75642015-05-15 17:00:24 -0700621 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700622 }
623 }
624
625 /**
626 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
627 */
628 public void verifyHighRes() {
629 if (mIconLoadRequest != null) {
630 mIconLoadRequest.cancel();
631 mIconLoadRequest = null;
632 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800633 if (getTag() instanceof ItemInfoWithIcon) {
634 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal0e08f162015-05-12 11:32:39 -0700635 if (info.usingLowResIcon) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800636 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700637 .updateIconInBackground(BubbleTextView.this, info);
638 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700639 }
640 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700641
Jon Miranda47170112017-03-03 14:57:14 -0800642 public int getIconSize() {
643 return mIconSize;
644 }
645
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700646 /**
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700647 * Interface to be implemented by the grand parent to allow click shadow effect.
648 */
Winsonc0880492015-08-21 11:16:27 -0700649 public interface BubbleTextShadowHandler {
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700650 void setPressedIcon(BubbleTextView icon, Bitmap background);
651 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800652}