blob: 107d7006aab48852b6a427d414ef30edb3b3a8c3 [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
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070020import android.content.res.ColorStateList;
Winson Chung656d11c2010-11-29 17:15:47 -080021import android.content.res.Resources;
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;
Winson1f064272016-07-18 17:18:02 -070025import android.graphics.Paint;
Michael Jurka137142e2011-01-05 20:57:04 -080026import android.graphics.Region;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.graphics.drawable.Drawable;
Winson Chung656d11c2010-11-29 17:15:47 -080028import android.util.AttributeSet;
Winson Chung5f8afe62013-08-12 16:19:28 -070029import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070030import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080031import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070032import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040033import android.view.ViewConfiguration;
Sunny Goyal4ffec482016-02-09 11:28:52 -080034import android.view.ViewDebug;
Sunny Goyal4b6eb262015-05-14 19:24:40 -070035import android.view.ViewParent;
Michael Jurkabdb5c532011-02-01 15:05:06 -080036import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070037
Sunny Goyal34b65272015-03-11 16:56:52 -070038import com.android.launcher3.IconCache.IconLoadRequest;
Sunny Goyal2d7cca12017-01-03 16:52:43 -080039import com.android.launcher3.IconCache.ItemInfoUpdateReceiver;
Tony Wickham9a8d11f2017-01-11 09:53:12 -080040import com.android.launcher3.badge.BadgeInfo;
Tony Wickham010d2552017-01-20 08:15:28 -080041import com.android.launcher3.badge.BadgeRenderer;
Sunny Goyal26119432016-02-18 22:09:23 +000042import com.android.launcher3.folder.FolderIcon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -080043import com.android.launcher3.graphics.DrawableFactory;
Sunny Goyal10629b02016-09-01 12:50:11 -070044import com.android.launcher3.graphics.HolographicOutlineHelper;
Tony Wickham9438ed42017-01-20 09:38:25 -080045import com.android.launcher3.graphics.IconPalette;
Sunny Goyal96ac68a2017-02-02 16:37:21 -080046import com.android.launcher3.graphics.PreloadIconDrawable;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070047import com.android.launcher3.model.PackageItemInfo;
Sunny Goyal34b65272015-03-11 16:56:52 -070048
Sunny Goyalc469aad2015-10-01 11:24:23 -070049import java.text.NumberFormat;
50
The Android Open Source Project31dd5032009-03-03 19:32:27 -080051/**
52 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
53 * because we want to make the bubble taller than the text and TextView's clip is
54 * too aggressive.
55 */
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080056public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver {
Sunny Goyal95abbb32014-08-04 10:53:22 -070057
Sunny Goyal8f8f3982016-07-25 17:08:38 -070058 // Dimensions in DP
59 private static final float AMBIENT_SHADOW_RADIUS = 2.5f;
60 private static final float KEY_SHADOW_RADIUS = 1f;
61 private static final float KEY_SHADOW_OFFSET = 0.5f;
62 private static final int AMBIENT_SHADOW_COLOR = 0x33000000;
63 private static final int KEY_SHADOW_COLOR = 0x66000000;
Winson Chung656d11c2010-11-29 17:15:47 -080064
Sunny Goyaldfaccf62015-05-11 16:30:44 -070065 private static final int DISPLAY_WORKSPACE = 0;
66 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070067 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070068
Sunny Goyal2a76e3f2017-02-16 13:33:15 -080069 private static final int[] STATE_PRESSED = new int[] {android.R.attr.state_pressed};
70
Sunny Goyal53d7ee42015-05-22 12:25:45 -070071 private final Launcher mLauncher;
Winson Chungb745afb2015-03-02 11:51:23 -080072 private Drawable mIcon;
Winson1f064272016-07-18 17:18:02 -070073 private final boolean mCenterVertically;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080074 private final Drawable mBackground;
Tony Wickham1bce7fd2016-04-28 17:39:03 -070075 private OnLongClickListener mOnLongClickListener;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080076 private final CheckLongPressHelper mLongPressHelper;
77 private final HolographicOutlineHelper mOutlineHelper;
Mady Melloref044dd2015-06-02 15:35:07 -070078 private final StylusEventHelper mStylusEventHelper;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080079
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080080 private boolean mBackgroundSizeChanged;
81
Sunny Goyal508da152014-08-14 10:53:27 -070082 private Bitmap mPressedBackground;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080083
Jason Monk02dd7ae2014-04-15 15:23:31 -040084 private float mSlop;
85
Winson Chung93f98ea2015-03-10 16:28:47 -070086 private final boolean mDeferShadowGenerationOnTouch;
Sunny Goyal15872da2014-07-08 15:43:54 -070087 private final boolean mCustomShadowsEnabled;
Winson Chungb745afb2015-03-02 11:51:23 -080088 private final boolean mLayoutHorizontal;
89 private final int mIconSize;
Sunny Goyal4ffec482016-02-09 11:28:52 -080090 @ViewDebug.ExportedProperty(category = "launcher")
Winson Chungb745afb2015-03-02 11:51:23 -080091 private int mTextColor;
Winson Chung5f8afe62013-08-12 16:19:28 -070092
Sunny Goyal4ffec482016-02-09 11:28:52 -080093 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -080094 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -080095 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -070096 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -080097 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -070098 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -050099
Sunny Goyal34b65272015-03-11 16:56:52 -0700100 private IconLoadRequest mIconLoadRequest;
101
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800102 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700103 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800104 }
105
106 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700107 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800108 }
109
110 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
111 super(context, attrs, defStyle);
Andrew Sappersteinabef55a2016-06-19 12:49:00 -0700112 mLauncher = Launcher.getLauncher(context);
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700113 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen96bb7982014-07-07 11:58:56 -0700114
Adam Cohen96bb7982014-07-07 11:58:56 -0700115 TypedArray a = context.obtainStyledAttributes(attrs,
116 R.styleable.BubbleTextView, defStyle, 0);
Sunny Goyal1f3f07d2017-02-10 16:52:16 -0800117 mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, false);
Winson Chungb745afb2015-03-02 11:51:23 -0800118 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Winson Chung93f98ea2015-03-10 16:28:47 -0700119 mDeferShadowGenerationOnTouch =
120 a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700121
122 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
123 int defaultIconSize = grid.iconSizePx;
124 if (display == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700125 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700126 } else if (display == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700127 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
128 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700129 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700130 } else if (display == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700131 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700132 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700133 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700134 }
Winson1f064272016-07-18 17:18:02 -0700135 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700136
137 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
138 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700139 a.recycle();
140
Sunny Goyal15872da2014-07-08 15:43:54 -0700141 if (mCustomShadowsEnabled) {
142 // Draw the background itself as the parent is drawn twice.
143 mBackground = getBackground();
144 setBackground(null);
Sunny Goyal8f8f3982016-07-25 17:08:38 -0700145
146 // Set shadow layer as the larger shadow to that the textView does not clip the shadow.
147 float density = getResources().getDisplayMetrics().density;
148 setShadowLayer(density * AMBIENT_SHADOW_RADIUS, 0, 0, AMBIENT_SHADOW_COLOR);
Sunny Goyal15872da2014-07-08 15:43:54 -0700149 } else {
150 mBackground = null;
151 }
Winson Chungb745afb2015-03-02 11:51:23 -0800152
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800153 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700154 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800155
Sunny Goyal10629b02016-09-01 12:50:11 -0700156 mOutlineHelper = HolographicOutlineHelper.getInstance(getContext());
Sunny Goyalae502842016-06-17 08:43:56 -0700157 setAccessibilityDelegate(mLauncher.getAccessibilityDelegate());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800158 }
159
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800160 public void applyFromShortcutInfo(ShortcutInfo info) {
161 applyFromShortcutInfo(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700162 }
163
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800164 public void applyFromShortcutInfo(ShortcutInfo info, boolean promiseStateChanged) {
165 applyIconAndLabel(info.iconBitmap, info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800166 setTag(info);
Sunny Goyal34942622014-08-29 17:20:55 -0700167 if (promiseStateChanged || info.isPromise()) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800168 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500169 }
Tony Wickham010d2552017-01-20 08:15:28 -0800170
Tony Wickham1e618492017-02-02 12:57:18 -0800171 applyBadgeState(info, false /* animate */);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800172 }
173
Sunny Goyal508da152014-08-14 10:53:27 -0700174 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700175 applyIconAndLabel(info.iconBitmap, info);
176
Winson Chung888b3a12015-03-13 11:14:16 -0700177 // We don't need to check the info since it's not a ShortcutInfo
178 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700179
180 // Verify high res immediately
181 verifyHighRes();
Tony Wickham010d2552017-01-20 08:15:28 -0800182
Tony Wickham1e618492017-02-02 12:57:18 -0800183 applyBadgeState(info, false /* animate */);
Sunny Goyal508da152014-08-14 10:53:27 -0700184 }
185
Sunny Goyal0e08f162015-05-12 11:32:39 -0700186 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700187 applyIconAndLabel(info.iconBitmap, info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700188 // We don't need to check the info since it's not a ShortcutInfo
189 super.setTag(info);
190
191 // Verify high res immediately
192 verifyHighRes();
193 }
194
Sunny Goyalf4204382016-07-13 10:46:07 -0700195 private void applyIconAndLabel(Bitmap icon, ItemInfo info) {
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800196 FastBitmapDrawable iconDrawable = DrawableFactory.get(getContext()).newIcon(icon, info);
Tony Wickham6b910a22016-11-08 10:40:34 -0800197 iconDrawable.setIsDisabled(info.isDisabled());
Sunny Goyalf4204382016-07-13 10:46:07 -0700198 setIcon(iconDrawable);
199 setText(info.title);
200 if (info.contentDescription != null) {
201 setContentDescription(info.isDisabled()
202 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
203 : info.contentDescription);
204 }
205 }
206
Winson Chung7501adf2015-06-02 11:24:28 -0700207 /**
208 * Overrides the default long press timeout.
209 */
210 public void setLongPressTimeout(int longPressTimeout) {
211 mLongPressHelper.setLongPressTimeout(longPressTimeout);
212 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700213
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800214 @Override
215 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700216 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800217 mBackgroundSizeChanged = true;
218 }
219 return super.setFrame(left, top, right, bottom);
220 }
221
222 @Override
223 protected boolean verifyDrawable(Drawable who) {
224 return who == mBackground || super.verifyDrawable(who);
225 }
226
227 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700228 public void setTag(Object tag) {
229 if (tag != null) {
230 LauncherModel.checkItemInfo((ItemInfo) tag);
231 }
232 super.setTag(tag);
233 }
234
235 @Override
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800236 public void refreshDrawableState() {
Sunny Goyal508da152014-08-14 10:53:27 -0700237 if (!mIgnorePressedStateChange) {
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800238 super.refreshDrawableState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800239 }
Sunny Goyal508da152014-08-14 10:53:27 -0700240 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800241
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800242 @Override
243 protected int[] onCreateDrawableState(int extraSpace) {
244 final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
245 if (mStayPressed) {
246 mergeDrawableStates(drawableState, STATE_PRESSED);
247 }
248 return drawableState;
249 }
250
Winson Chungb745afb2015-03-02 11:51:23 -0800251 /** Returns the icon for this view. */
252 public Drawable getIcon() {
253 return mIcon;
254 }
255
256 /** Returns whether the layout is horizontal. */
257 public boolean isLayoutHorizontal() {
258 return mLayoutHorizontal;
259 }
260
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800261 @Override
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700262 public void setOnLongClickListener(OnLongClickListener l) {
263 super.setOnLongClickListener(l);
264 mOnLongClickListener = l;
265 }
266
267 public OnLongClickListener getOnLongClickListener() {
268 return mOnLongClickListener;
269 }
270
271 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800272 public boolean onTouchEvent(MotionEvent event) {
273 // Call the superclass onTouchEvent first, because sometimes it changes the state to
274 // isPressed() on an ACTION_UP
275 boolean result = super.onTouchEvent(event);
276
Mady Melloref044dd2015-06-02 15:35:07 -0700277 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700278 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700279 mLongPressHelper.cancelLongPress();
280 result = true;
281 }
282
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800283 switch (event.getAction()) {
284 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700285 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800286 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
287 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700288 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700289 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800290 }
Winson Chung88f33452012-02-23 15:23:44 -0800291
Mady Melloref044dd2015-06-02 15:35:07 -0700292 // If we're in a stylus button press, don't check for long press.
293 if (!mStylusEventHelper.inStylusButtonPressed()) {
294 mLongPressHelper.postCheckForLongPress();
295 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800296 break;
297 case MotionEvent.ACTION_CANCEL:
298 case MotionEvent.ACTION_UP:
299 // If we've touched down and up on an item, and it's still not "pressed", then
300 // destroy the pressed outline
301 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700302 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800303 }
Winson Chung88f33452012-02-23 15:23:44 -0800304
305 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800306 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400307 case MotionEvent.ACTION_MOVE:
308 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
309 mLongPressHelper.cancelLongPress();
310 }
311 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800312 }
313 return result;
314 }
315
Michael Jurkaddd62e92011-02-16 17:49:14 -0800316 void setStayPressed(boolean stayPressed) {
317 mStayPressed = stayPressed;
318 if (!stayPressed) {
Sunny Goyal10629b02016-09-01 12:50:11 -0700319 HolographicOutlineHelper.getInstance(getContext()).recycleShadowBitmap(mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700320 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700321 } else {
322 if (mPressedBackground == null) {
323 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
324 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800325 }
Sunny Goyal508da152014-08-14 10:53:27 -0700326
327 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700328 ViewParent parent = getParent();
329 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
330 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
331 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700332 }
333
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800334 refreshDrawableState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800335 }
336
Sunny Goyal508da152014-08-14 10:53:27 -0700337 void clearPressedBackground() {
338 setPressed(false);
339 setStayPressed(false);
340 }
341
342 @Override
343 public boolean onKeyDown(int keyCode, KeyEvent event) {
344 if (super.onKeyDown(keyCode, event)) {
345 // Pre-create shadow so show immediately on click.
346 if (mPressedBackground == null) {
347 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700348 }
Sunny Goyal508da152014-08-14 10:53:27 -0700349 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700350 }
Sunny Goyal508da152014-08-14 10:53:27 -0700351 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800352 }
353
Sunny Goyal508da152014-08-14 10:53:27 -0700354 @Override
355 public boolean onKeyUp(int keyCode, KeyEvent event) {
356 // Unlike touch events, keypress event propagate pressed state change immediately,
357 // without waiting for onClickHandler to execute. Disable pressed state changes here
358 // to avoid flickering.
359 mIgnorePressedStateChange = true;
360 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700361
Sunny Goyal508da152014-08-14 10:53:27 -0700362 mPressedBackground = null;
363 mIgnorePressedStateChange = false;
Sunny Goyal2a76e3f2017-02-16 13:33:15 -0800364 refreshDrawableState();
Sunny Goyal508da152014-08-14 10:53:27 -0700365 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800366 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800367
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800368 @Override
369 public void draw(Canvas canvas) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700370 if (!mCustomShadowsEnabled) {
Adam Cohen477828c2013-09-20 12:05:49 -0700371 super.draw(canvas);
372 return;
373 }
374
Michael Jurkabdb5c532011-02-01 15:05:06 -0800375 final Drawable background = mBackground;
376 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700377 final int scrollX = getScrollX();
378 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800379
Michael Jurkabdb5c532011-02-01 15:05:06 -0800380 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700381 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800382 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800383 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800384
385 if ((scrollX | scrollY) == 0) {
386 background.draw(canvas);
387 } else {
388 canvas.translate(scrollX, scrollY);
389 background.draw(canvas);
390 canvas.translate(-scrollX, -scrollY);
391 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800392 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800393
394 // If text is transparent, don't draw any shadow
Sunny Goyal1f3f07d2017-02-10 16:52:16 -0800395 if ((getCurrentTextColor() >> 24) == 0) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800396 getPaint().clearShadowLayer();
397 super.draw(canvas);
398 return;
399 }
400
Michael Jurkabdb5c532011-02-01 15:05:06 -0800401 // We enhance the shadow by drawing the shadow twice
Sunny Goyal8f8f3982016-07-25 17:08:38 -0700402 float density = getResources().getDisplayMetrics().density;
403 getPaint().setShadowLayer(density * AMBIENT_SHADOW_RADIUS, 0, 0, AMBIENT_SHADOW_COLOR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800404 super.draw(canvas);
405 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700406 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
407 getScrollX() + getWidth(),
408 getScrollY() + getHeight(), Region.Op.INTERSECT);
Sunny Goyal8f8f3982016-07-25 17:08:38 -0700409 getPaint().setShadowLayer(
410 density * KEY_SHADOW_RADIUS, 0.0f, density * KEY_SHADOW_OFFSET, KEY_SHADOW_COLOR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800411 super.draw(canvas);
412 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800413 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400414
415 @Override
416 protected void onAttachedToWindow() {
417 super.onAttachedToWindow();
Sunny Goyal95abbb32014-08-04 10:53:22 -0700418
Winson Chung656d11c2010-11-29 17:15:47 -0800419 if (mBackground != null) mBackground.setCallback(this);
Jason Monk02dd7ae2014-04-15 15:23:31 -0400420 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400421 }
422
423 @Override
Winson1f064272016-07-18 17:18:02 -0700424 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
425 if (mCenterVertically) {
426 Paint.FontMetrics fm = getPaint().getFontMetrics();
427 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
428 (int) Math.ceil(fm.bottom - fm.top);
429 int height = MeasureSpec.getSize(heightMeasureSpec);
430 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
431 getPaddingBottom());
432 }
433 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
434 }
435
436 @Override
Joe Onorato9c1289c2009-08-17 11:03:03 -0400437 protected void onDetachedFromWindow() {
438 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800439 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400440 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700441
Adam Cohen477828c2013-09-20 12:05:49 -0700442 @Override
443 public void setTextColor(int color) {
444 mTextColor = color;
445 super.setTextColor(color);
446 }
447
Adam Cohen96bb7982014-07-07 11:58:56 -0700448 @Override
449 public void setTextColor(ColorStateList colors) {
450 mTextColor = colors.getDefaultColor();
451 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700452 }
453
Winson Chung5f8afe62013-08-12 16:19:28 -0700454 public void setTextVisibility(boolean visible) {
455 Resources res = getResources();
456 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700457 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700458 } else {
Adam Cohen477828c2013-09-20 12:05:49 -0700459 super.setTextColor(res.getColor(android.R.color.transparent));
Winson Chung5f8afe62013-08-12 16:19:28 -0700460 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700461 }
462
Winson Chungaffd7b42010-08-20 15:11:56 -0700463 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800464 public void cancelLongPress() {
465 super.cancelLongPress();
466
467 mLongPressHelper.cancelLongPress();
468 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500469
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800470 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700471 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400472 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700473 final boolean isPromise = info.isPromise();
474 final int progressLevel = isPromise ?
475 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
476 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700477
Sunny Goyalc469aad2015-10-01 11:24:23 -0700478 setContentDescription(progressLevel > 0 ?
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800479 getContext().getString(R.string.app_downloading_title, info.title,
480 NumberFormat.getPercentInstance().format(progressLevel * 0.01)) :
Sunny Goyalc469aad2015-10-01 11:24:23 -0700481 getContext().getString(R.string.app_waiting_download_title, info.title));
482
Winson Chungb745afb2015-03-02 11:51:23 -0800483 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700484 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800485 if (mIcon instanceof PreloadIconDrawable) {
486 preloadDrawable = (PreloadIconDrawable) mIcon;
Sunny Goyale755d462014-07-22 13:48:29 -0700487 } else {
Sunny Goyal96ac68a2017-02-02 16:37:21 -0800488 preloadDrawable = DrawableFactory.get(getContext())
489 .newPendingIcon(info.iconBitmap, getContext());
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700490 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700491 }
492
493 preloadDrawable.setLevel(progressLevel);
Sunny Goyal34942622014-08-29 17:20:55 -0700494 if (promiseStateChanged) {
495 preloadDrawable.maybePerformFinishedAnimation();
Sunny Goyale755d462014-07-22 13:48:29 -0700496 }
Sunny Goyale755d462014-07-22 13:48:29 -0700497 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400498 }
499 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700500
Tony Wickham1e618492017-02-02 12:57:18 -0800501 public void applyBadgeState(ItemInfo itemInfo, boolean animate) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800502 if (mIcon instanceof FastBitmapDrawable) {
Tony Wickham010d2552017-01-20 08:15:28 -0800503 BadgeInfo badgeInfo = mLauncher.getPopupDataProvider().getBadgeInfoForItem(itemInfo);
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800504 BadgeRenderer badgeRenderer = mLauncher.getDeviceProfile().mBadgeRenderer;
Tony Wickham1e618492017-02-02 12:57:18 -0800505 ((FastBitmapDrawable) mIcon).applyIconBadge(badgeInfo, badgeRenderer, animate);
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800506 }
507 }
508
Tony Wickham9438ed42017-01-20 09:38:25 -0800509 public IconPalette getIconPalette() {
510 return mIcon instanceof FastBitmapDrawable ? ((FastBitmapDrawable) mIcon).getIconPalette()
511 : null;
512 }
513
Winson Chungb745afb2015-03-02 11:51:23 -0800514 /**
515 * Sets the icon for this view based on the layout direction.
516 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700517 private void setIcon(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800518 mIcon = icon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800519 mIcon.setBounds(0, 0, mIconSize, mIconSize);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700520 applyCompoundDrawables(mIcon);
521 }
522
523 protected void applyCompoundDrawables(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800524 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800525 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800526 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700527 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800528 }
Winson Chungb745afb2015-03-02 11:51:23 -0800529 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700530
Sunny Goyal69b75642015-05-15 17:00:24 -0700531 @Override
532 public void requestLayout() {
533 if (!mDisableRelayout) {
534 super.requestLayout();
535 }
536 }
537
Sunny Goyal34b65272015-03-11 16:56:52 -0700538 /**
539 * Applies the item info if it is same as what the view is pointing to currently.
540 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800541 @Override
542 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700543 if (getTag() == info) {
544 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700545 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700546
Sunny Goyal34b65272015-03-11 16:56:52 -0700547 if (info instanceof AppInfo) {
548 applyFromApplicationInfo((AppInfo) info);
549 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800550 applyFromShortcutInfo((ShortcutInfo) info);
Sunny Goyal317698b2015-07-29 11:45:41 -0700551 if ((info.rank < FolderIcon.NUM_ITEMS_IN_PREVIEW) && (info.container >= 0)) {
552 View folderIcon =
553 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
554 if (folderIcon != null) {
555 folderIcon.invalidate();
556 }
557 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700558 } else if (info instanceof PackageItemInfo) {
559 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700560 }
Winsonc0880492015-08-21 11:16:27 -0700561
Sunny Goyal69b75642015-05-15 17:00:24 -0700562 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700563 }
564 }
565
566 /**
567 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
568 */
569 public void verifyHighRes() {
570 if (mIconLoadRequest != null) {
571 mIconLoadRequest.cancel();
572 mIconLoadRequest = null;
573 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800574 if (getTag() instanceof ItemInfoWithIcon) {
575 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal0e08f162015-05-12 11:32:39 -0700576 if (info.usingLowResIcon) {
Sunny Goyal87f784c2017-01-11 10:48:34 -0800577 mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache()
Sunny Goyal0e08f162015-05-12 11:32:39 -0700578 .updateIconInBackground(BubbleTextView.this, info);
579 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700580 }
581 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700582
583 /**
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700584 * Returns true if the view can show custom shortcuts.
585 */
586 public boolean hasDeepShortcuts() {
Tony Wickham010d2552017-01-20 08:15:28 -0800587 return !mLauncher.getPopupDataProvider().getShortcutIdsForItem((ItemInfo) getTag())
588 .isEmpty();
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700589 }
590
591 /**
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700592 * Interface to be implemented by the grand parent to allow click shadow effect.
593 */
Winsonc0880492015-08-21 11:16:27 -0700594 public interface BubbleTextShadowHandler {
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700595 void setPressedIcon(BubbleTextView icon, Bitmap background);
596 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800597}