blob: 77572c7f7e86ccd6a3d522ba6bf3a36d445d6f92 [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;
Sunny Goyal95abbb32014-08-04 10:53:22 -070022import android.content.res.Resources.Theme;
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;
Winson1f064272016-07-18 17:18:02 -070026import android.graphics.Paint;
Michael Jurka137142e2011-01-05 20:57:04 -080027import android.graphics.Region;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028import android.graphics.drawable.Drawable;
Winson Chung656d11c2010-11-29 17:15:47 -080029import android.util.AttributeSet;
Sunny Goyal95abbb32014-08-04 10:53:22 -070030import android.util.SparseArray;
Winson Chung5f8afe62013-08-12 16:19:28 -070031import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070032import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080033import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070034import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040035import android.view.ViewConfiguration;
Sunny Goyal4ffec482016-02-09 11:28:52 -080036import android.view.ViewDebug;
Sunny Goyal4b6eb262015-05-14 19:24:40 -070037import android.view.ViewParent;
Michael Jurkabdb5c532011-02-01 15:05:06 -080038import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070039
Sunny Goyal34b65272015-03-11 16:56:52 -070040import com.android.launcher3.IconCache.IconLoadRequest;
Sunny Goyal2d7cca12017-01-03 16:52:43 -080041import com.android.launcher3.IconCache.ItemInfoUpdateReceiver;
Tony Wickham9a8d11f2017-01-11 09:53:12 -080042import com.android.launcher3.badge.BadgeRenderer;
43import com.android.launcher3.badge.BadgeInfo;
Sunny Goyal26119432016-02-18 22:09:23 +000044import com.android.launcher3.folder.FolderIcon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -080045import com.android.launcher3.graphics.DrawableFactory;
Sunny Goyal10629b02016-09-01 12:50:11 -070046import com.android.launcher3.graphics.HolographicOutlineHelper;
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 */
Winson Chungb1777442015-06-16 13:35:04 -070056public class BubbleTextView extends TextView
Sunny Goyal2d7cca12017-01-03 16:52:43 -080057 implements BaseRecyclerViewFastScrollBar.FastScrollFocusableView, ItemInfoUpdateReceiver {
Sunny Goyal95abbb32014-08-04 10:53:22 -070058
Sameer Padala8fd74832014-09-08 16:00:29 -070059 private static SparseArray<Theme> sPreloaderThemes = new SparseArray<Theme>(2);
Sunny Goyal95abbb32014-08-04 10:53:22 -070060
Sunny Goyal8f8f3982016-07-25 17:08:38 -070061 // Dimensions in DP
62 private static final float AMBIENT_SHADOW_RADIUS = 2.5f;
63 private static final float KEY_SHADOW_RADIUS = 1f;
64 private static final float KEY_SHADOW_OFFSET = 0.5f;
65 private static final int AMBIENT_SHADOW_COLOR = 0x33000000;
66 private static final int KEY_SHADOW_COLOR = 0x66000000;
Winson Chung656d11c2010-11-29 17:15:47 -080067
Sunny Goyaldfaccf62015-05-11 16:30:44 -070068 private static final int DISPLAY_WORKSPACE = 0;
69 private static final int DISPLAY_ALL_APPS = 1;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -070070 private static final int DISPLAY_FOLDER = 2;
Sunny Goyaldfaccf62015-05-11 16:30:44 -070071
Sunny Goyal53d7ee42015-05-22 12:25:45 -070072 private final Launcher mLauncher;
Winson Chungb745afb2015-03-02 11:51:23 -080073 private Drawable mIcon;
Winson1f064272016-07-18 17:18:02 -070074 private final boolean mCenterVertically;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080075 private final Drawable mBackground;
Tony Wickham1bce7fd2016-04-28 17:39:03 -070076 private OnLongClickListener mOnLongClickListener;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080077 private final CheckLongPressHelper mLongPressHelper;
78 private final HolographicOutlineHelper mOutlineHelper;
Mady Melloref044dd2015-06-02 15:35:07 -070079 private final StylusEventHelper mStylusEventHelper;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080080
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080081 private boolean mBackgroundSizeChanged;
82
Sunny Goyal508da152014-08-14 10:53:27 -070083 private Bitmap mPressedBackground;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080084
Jason Monk02dd7ae2014-04-15 15:23:31 -040085 private float mSlop;
86
Winson Chung93f98ea2015-03-10 16:28:47 -070087 private final boolean mDeferShadowGenerationOnTouch;
Sunny Goyal15872da2014-07-08 15:43:54 -070088 private final boolean mCustomShadowsEnabled;
Winson Chungb745afb2015-03-02 11:51:23 -080089 private final boolean mLayoutHorizontal;
90 private final int mIconSize;
Sunny Goyal4ffec482016-02-09 11:28:52 -080091 @ViewDebug.ExportedProperty(category = "launcher")
Winson Chungb745afb2015-03-02 11:51:23 -080092 private int mTextColor;
Winson Chung5f8afe62013-08-12 16:19:28 -070093
Sunny Goyal4ffec482016-02-09 11:28:52 -080094 @ViewDebug.ExportedProperty(category = "launcher")
Michael Jurkaddd62e92011-02-16 17:49:14 -080095 private boolean mStayPressed;
Sunny Goyal4ffec482016-02-09 11:28:52 -080096 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal508da152014-08-14 10:53:27 -070097 private boolean mIgnorePressedStateChange;
Sunny Goyal4ffec482016-02-09 11:28:52 -080098 @ViewDebug.ExportedProperty(category = "launcher")
Sunny Goyal69b75642015-05-15 17:00:24 -070099 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500100
Sunny Goyal34b65272015-03-11 16:56:52 -0700101 private IconLoadRequest mIconLoadRequest;
102
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800103 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700104 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800105 }
106
107 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700108 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109 }
110
111 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
112 super(context, attrs, defStyle);
Andrew Sappersteinabef55a2016-06-19 12:49:00 -0700113 mLauncher = Launcher.getLauncher(context);
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700114 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen96bb7982014-07-07 11:58:56 -0700115
Adam Cohen96bb7982014-07-07 11:58:56 -0700116 TypedArray a = context.obtainStyledAttributes(attrs,
117 R.styleable.BubbleTextView, defStyle, 0);
Adam Cohen96bb7982014-07-07 11:58:56 -0700118 mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true);
Winson Chungb745afb2015-03-02 11:51:23 -0800119 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Winson Chung93f98ea2015-03-10 16:28:47 -0700120 mDeferShadowGenerationOnTouch =
121 a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700122
123 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
124 int defaultIconSize = grid.iconSizePx;
125 if (display == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700126 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700127 } else if (display == DISPLAY_ALL_APPS) {
Winson1f064272016-07-18 17:18:02 -0700128 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
129 setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700130 defaultIconSize = grid.allAppsIconSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700131 } else if (display == DISPLAY_FOLDER) {
Jon Mirandabf7d8122016-11-03 15:29:29 -0700132 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx);
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700133 setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx);
Jon Mirandabf7d8122016-11-03 15:29:29 -0700134 defaultIconSize = grid.folderChildIconSizePx;
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700135 }
Winson1f064272016-07-18 17:18:02 -0700136 mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700137
138 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
139 defaultIconSize);
Adam Cohen96bb7982014-07-07 11:58:56 -0700140 a.recycle();
141
Sunny Goyal15872da2014-07-08 15:43:54 -0700142 if (mCustomShadowsEnabled) {
143 // Draw the background itself as the parent is drawn twice.
144 mBackground = getBackground();
145 setBackground(null);
Sunny Goyal8f8f3982016-07-25 17:08:38 -0700146
147 // Set shadow layer as the larger shadow to that the textView does not clip the shadow.
148 float density = getResources().getDisplayMetrics().density;
149 setShadowLayer(density * AMBIENT_SHADOW_RADIUS, 0, 0, AMBIENT_SHADOW_COLOR);
Sunny Goyal15872da2014-07-08 15:43:54 -0700150 } else {
151 mBackground = null;
152 }
Winson Chungb745afb2015-03-02 11:51:23 -0800153
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800154 mLongPressHelper = new CheckLongPressHelper(this);
Mady Mellorbb835202015-07-15 16:34:34 -0700155 mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800156
Sunny Goyal10629b02016-09-01 12:50:11 -0700157 mOutlineHelper = HolographicOutlineHelper.getInstance(getContext());
Sunny Goyalae502842016-06-17 08:43:56 -0700158 setAccessibilityDelegate(mLauncher.getAccessibilityDelegate());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800159 }
160
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800161 public void applyFromShortcutInfo(ShortcutInfo info) {
162 applyFromShortcutInfo(info, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700163 }
164
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800165 public void applyFromShortcutInfo(ShortcutInfo info, boolean promiseStateChanged) {
166 applyIconAndLabel(info.iconBitmap, info);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800167 setTag(info);
Sunny Goyal34942622014-08-29 17:20:55 -0700168 if (promiseStateChanged || info.isPromise()) {
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800169 applyPromiseState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500170 }
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800171 }
172
Sunny Goyal508da152014-08-14 10:53:27 -0700173 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700174 applyIconAndLabel(info.iconBitmap, info);
175
Winson Chung888b3a12015-03-13 11:14:16 -0700176 // We don't need to check the info since it's not a ShortcutInfo
177 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700178
179 // Verify high res immediately
180 verifyHighRes();
Sunny Goyal508da152014-08-14 10:53:27 -0700181 }
182
Sunny Goyal0e08f162015-05-12 11:32:39 -0700183 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyalf4204382016-07-13 10:46:07 -0700184 applyIconAndLabel(info.iconBitmap, info);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700185 // We don't need to check the info since it's not a ShortcutInfo
186 super.setTag(info);
187
188 // Verify high res immediately
189 verifyHighRes();
190 }
191
Sunny Goyalf4204382016-07-13 10:46:07 -0700192 private void applyIconAndLabel(Bitmap icon, ItemInfo info) {
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800193 FastBitmapDrawable iconDrawable = DrawableFactory.get(getContext()).newIcon(icon, info);
Tony Wickham6b910a22016-11-08 10:40:34 -0800194 iconDrawable.setIsDisabled(info.isDisabled());
Sunny Goyalf4204382016-07-13 10:46:07 -0700195 setIcon(iconDrawable);
196 setText(info.title);
197 if (info.contentDescription != null) {
198 setContentDescription(info.isDisabled()
199 ? getContext().getString(R.string.disabled_app_label, info.contentDescription)
200 : info.contentDescription);
201 }
202 }
203
Winson Chung7501adf2015-06-02 11:24:28 -0700204 /**
205 * Overrides the default long press timeout.
206 */
207 public void setLongPressTimeout(int longPressTimeout) {
208 mLongPressHelper.setLongPressTimeout(longPressTimeout);
209 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700210
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800211 @Override
212 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700213 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800214 mBackgroundSizeChanged = true;
215 }
216 return super.setFrame(left, top, right, bottom);
217 }
218
219 @Override
220 protected boolean verifyDrawable(Drawable who) {
221 return who == mBackground || super.verifyDrawable(who);
222 }
223
224 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700225 public void setTag(Object tag) {
226 if (tag != null) {
227 LauncherModel.checkItemInfo((ItemInfo) tag);
228 }
229 super.setTag(tag);
230 }
231
232 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700233 public void setPressed(boolean pressed) {
234 super.setPressed(pressed);
235
236 if (!mIgnorePressedStateChange) {
237 updateIconState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800238 }
Sunny Goyal508da152014-08-14 10:53:27 -0700239 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800240
Winson Chungb745afb2015-03-02 11:51:23 -0800241 /** Returns the icon for this view. */
242 public Drawable getIcon() {
243 return mIcon;
244 }
245
246 /** Returns whether the layout is horizontal. */
247 public boolean isLayoutHorizontal() {
248 return mLayoutHorizontal;
249 }
250
Sunny Goyal508da152014-08-14 10:53:27 -0700251 private void updateIconState() {
Winson Chungb745afb2015-03-02 11:51:23 -0800252 if (mIcon instanceof FastBitmapDrawable) {
Winsonc0880492015-08-21 11:16:27 -0700253 FastBitmapDrawable d = (FastBitmapDrawable) mIcon;
Tony Wickham6b910a22016-11-08 10:40:34 -0800254 if (isPressed() || mStayPressed) {
Kenny Guy44cba692016-01-21 19:50:02 +0000255 d.animateState(FastBitmapDrawable.State.PRESSED);
Winsonc0880492015-08-21 11:16:27 -0700256 } else {
257 d.animateState(FastBitmapDrawable.State.NORMAL);
258 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800259 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800260 }
261
262 @Override
Tony Wickham1bce7fd2016-04-28 17:39:03 -0700263 public void setOnLongClickListener(OnLongClickListener l) {
264 super.setOnLongClickListener(l);
265 mOnLongClickListener = l;
266 }
267
268 public OnLongClickListener getOnLongClickListener() {
269 return mOnLongClickListener;
270 }
271
272 @Override
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800273 public boolean onTouchEvent(MotionEvent event) {
274 // Call the superclass onTouchEvent first, because sometimes it changes the state to
275 // isPressed() on an ACTION_UP
276 boolean result = super.onTouchEvent(event);
277
Mady Melloref044dd2015-06-02 15:35:07 -0700278 // Check for a stylus button press, if it occurs cancel any long press checks.
Mady Mellorbb835202015-07-15 16:34:34 -0700279 if (mStylusEventHelper.onMotionEvent(event)) {
Mady Melloref044dd2015-06-02 15:35:07 -0700280 mLongPressHelper.cancelLongPress();
281 result = true;
282 }
283
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800284 switch (event.getAction()) {
285 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700286 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800287 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
288 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700289 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700290 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800291 }
Winson Chung88f33452012-02-23 15:23:44 -0800292
Mady Melloref044dd2015-06-02 15:35:07 -0700293 // If we're in a stylus button press, don't check for long press.
294 if (!mStylusEventHelper.inStylusButtonPressed()) {
295 mLongPressHelper.postCheckForLongPress();
296 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800297 break;
298 case MotionEvent.ACTION_CANCEL:
299 case MotionEvent.ACTION_UP:
300 // If we've touched down and up on an item, and it's still not "pressed", then
301 // destroy the pressed outline
302 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700303 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800304 }
Winson Chung88f33452012-02-23 15:23:44 -0800305
306 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800307 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400308 case MotionEvent.ACTION_MOVE:
309 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
310 mLongPressHelper.cancelLongPress();
311 }
312 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800313 }
314 return result;
315 }
316
Michael Jurkaddd62e92011-02-16 17:49:14 -0800317 void setStayPressed(boolean stayPressed) {
318 mStayPressed = stayPressed;
319 if (!stayPressed) {
Sunny Goyal10629b02016-09-01 12:50:11 -0700320 HolographicOutlineHelper.getInstance(getContext()).recycleShadowBitmap(mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700321 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700322 } else {
323 if (mPressedBackground == null) {
324 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
325 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800326 }
Sunny Goyal508da152014-08-14 10:53:27 -0700327
328 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700329 ViewParent parent = getParent();
330 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
331 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
332 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700333 }
334
335 updateIconState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800336 }
337
Sunny Goyal508da152014-08-14 10:53:27 -0700338 void clearPressedBackground() {
339 setPressed(false);
340 setStayPressed(false);
341 }
342
343 @Override
344 public boolean onKeyDown(int keyCode, KeyEvent event) {
345 if (super.onKeyDown(keyCode, event)) {
346 // Pre-create shadow so show immediately on click.
347 if (mPressedBackground == null) {
348 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700349 }
Sunny Goyal508da152014-08-14 10:53:27 -0700350 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700351 }
Sunny Goyal508da152014-08-14 10:53:27 -0700352 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800353 }
354
Sunny Goyal508da152014-08-14 10:53:27 -0700355 @Override
356 public boolean onKeyUp(int keyCode, KeyEvent event) {
357 // Unlike touch events, keypress event propagate pressed state change immediately,
358 // without waiting for onClickHandler to execute. Disable pressed state changes here
359 // to avoid flickering.
360 mIgnorePressedStateChange = true;
361 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700362
Sunny Goyal508da152014-08-14 10:53:27 -0700363 mPressedBackground = null;
364 mIgnorePressedStateChange = false;
365 updateIconState();
366 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800367 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800368
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800369 @Override
370 public void draw(Canvas canvas) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700371 if (!mCustomShadowsEnabled) {
Adam Cohen477828c2013-09-20 12:05:49 -0700372 super.draw(canvas);
373 return;
374 }
375
Michael Jurkabdb5c532011-02-01 15:05:06 -0800376 final Drawable background = mBackground;
377 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700378 final int scrollX = getScrollX();
379 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800380
Michael Jurkabdb5c532011-02-01 15:05:06 -0800381 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700382 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800383 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800384 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800385
386 if ((scrollX | scrollY) == 0) {
387 background.draw(canvas);
388 } else {
389 canvas.translate(scrollX, scrollY);
390 background.draw(canvas);
391 canvas.translate(-scrollX, -scrollY);
392 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800393 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800394
395 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800396 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800397 getPaint().clearShadowLayer();
398 super.draw(canvas);
399 return;
400 }
401
Michael Jurkabdb5c532011-02-01 15:05:06 -0800402 // We enhance the shadow by drawing the shadow twice
Sunny Goyal8f8f3982016-07-25 17:08:38 -0700403 float density = getResources().getDisplayMetrics().density;
404 getPaint().setShadowLayer(density * AMBIENT_SHADOW_RADIUS, 0, 0, AMBIENT_SHADOW_COLOR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800405 super.draw(canvas);
406 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700407 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
408 getScrollX() + getWidth(),
409 getScrollY() + getHeight(), Region.Op.INTERSECT);
Sunny Goyal8f8f3982016-07-25 17:08:38 -0700410 getPaint().setShadowLayer(
411 density * KEY_SHADOW_RADIUS, 0.0f, density * KEY_SHADOW_OFFSET, KEY_SHADOW_COLOR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800412 super.draw(canvas);
413 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800414 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400415
416 @Override
417 protected void onAttachedToWindow() {
418 super.onAttachedToWindow();
Sunny Goyal95abbb32014-08-04 10:53:22 -0700419
Winson Chung656d11c2010-11-29 17:15:47 -0800420 if (mBackground != null) mBackground.setCallback(this);
Sunny Goyal95abbb32014-08-04 10:53:22 -0700421
Winson Chungb745afb2015-03-02 11:51:23 -0800422 if (mIcon instanceof PreloadIconDrawable) {
423 ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme());
Sunny Goyal95abbb32014-08-04 10:53:22 -0700424 }
Jason Monk02dd7ae2014-04-15 15:23:31 -0400425 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400426 }
427
428 @Override
Winson1f064272016-07-18 17:18:02 -0700429 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
430 if (mCenterVertically) {
431 Paint.FontMetrics fm = getPaint().getFontMetrics();
432 int cellHeightPx = mIconSize + getCompoundDrawablePadding() +
433 (int) Math.ceil(fm.bottom - fm.top);
434 int height = MeasureSpec.getSize(heightMeasureSpec);
435 setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(),
436 getPaddingBottom());
437 }
438 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
439 }
440
441 @Override
Joe Onorato9c1289c2009-08-17 11:03:03 -0400442 protected void onDetachedFromWindow() {
443 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800444 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400445 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700446
Adam Cohen477828c2013-09-20 12:05:49 -0700447 @Override
448 public void setTextColor(int color) {
449 mTextColor = color;
450 super.setTextColor(color);
451 }
452
Adam Cohen96bb7982014-07-07 11:58:56 -0700453 @Override
454 public void setTextColor(ColorStateList colors) {
455 mTextColor = colors.getDefaultColor();
456 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700457 }
458
Winson Chung5f8afe62013-08-12 16:19:28 -0700459 public void setTextVisibility(boolean visible) {
460 Resources res = getResources();
461 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700462 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700463 } else {
Adam Cohen477828c2013-09-20 12:05:49 -0700464 super.setTextColor(res.getColor(android.R.color.transparent));
Winson Chung5f8afe62013-08-12 16:19:28 -0700465 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700466 }
467
Winson Chungaffd7b42010-08-20 15:11:56 -0700468 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800469 public void cancelLongPress() {
470 super.cancelLongPress();
471
472 mLongPressHelper.cancelLongPress();
473 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500474
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800475 public void applyPromiseState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700476 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400477 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700478 final boolean isPromise = info.isPromise();
479 final int progressLevel = isPromise ?
480 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
481 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700482
Sunny Goyalc469aad2015-10-01 11:24:23 -0700483 setContentDescription(progressLevel > 0 ?
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800484 getContext().getString(R.string.app_downloading_title, info.title,
485 NumberFormat.getPercentInstance().format(progressLevel * 0.01)) :
Sunny Goyalc469aad2015-10-01 11:24:23 -0700486 getContext().getString(R.string.app_waiting_download_title, info.title));
487
Winson Chungb745afb2015-03-02 11:51:23 -0800488 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700489 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800490 if (mIcon instanceof PreloadIconDrawable) {
491 preloadDrawable = (PreloadIconDrawable) mIcon;
Sunny Goyale755d462014-07-22 13:48:29 -0700492 } else {
Winson Chungb745afb2015-03-02 11:51:23 -0800493 preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme());
Tony Wickhambfbf7f92016-05-19 11:19:39 -0700494 setIcon(preloadDrawable);
Sunny Goyale755d462014-07-22 13:48:29 -0700495 }
496
497 preloadDrawable.setLevel(progressLevel);
Sunny Goyal34942622014-08-29 17:20:55 -0700498 if (promiseStateChanged) {
499 preloadDrawable.maybePerformFinishedAnimation();
Sunny Goyale755d462014-07-22 13:48:29 -0700500 }
Sunny Goyale755d462014-07-22 13:48:29 -0700501 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400502 }
503 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700504
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800505 public void applyBadgeState(BadgeInfo badgeInfo) {
506 if (mIcon instanceof FastBitmapDrawable) {
507 BadgeRenderer badgeRenderer = mLauncher.getDeviceProfile().mBadgeRenderer;
508 ((FastBitmapDrawable) mIcon).applyIconBadge(badgeInfo, badgeRenderer);
509 }
510 }
511
Sunny Goyal95abbb32014-08-04 10:53:22 -0700512 private Theme getPreloaderTheme() {
513 Object tag = getTag();
514 int style = ((tag != null) && (tag instanceof ShortcutInfo) &&
515 (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder
516 : R.style.PreloadIcon;
517 Theme theme = sPreloaderThemes.get(style);
518 if (theme == null) {
519 theme = getResources().newTheme();
520 theme.applyStyle(style, true);
521 sPreloaderThemes.put(style, theme);
522 }
523 return theme;
524 }
Winson Chungb745afb2015-03-02 11:51:23 -0800525
526 /**
527 * Sets the icon for this view based on the layout direction.
528 */
Tony Wickham377ed3f2016-07-20 15:21:04 -0700529 private void setIcon(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800530 mIcon = icon;
Sunny Goyal55cb70b2016-11-12 09:58:29 -0800531 mIcon.setBounds(0, 0, mIconSize, mIconSize);
Tony Wickham377ed3f2016-07-20 15:21:04 -0700532 applyCompoundDrawables(mIcon);
533 }
534
535 protected void applyCompoundDrawables(Drawable icon) {
Winson Chungb745afb2015-03-02 11:51:23 -0800536 if (mLayoutHorizontal) {
Sunny Goyala52ecb02016-12-16 15:04:51 -0800537 setCompoundDrawablesRelative(icon, null, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800538 } else {
Tony Wickham377ed3f2016-07-20 15:21:04 -0700539 setCompoundDrawables(null, icon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800540 }
Winson Chungb745afb2015-03-02 11:51:23 -0800541 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700542
Sunny Goyal69b75642015-05-15 17:00:24 -0700543 @Override
544 public void requestLayout() {
545 if (!mDisableRelayout) {
546 super.requestLayout();
547 }
548 }
549
Sunny Goyal34b65272015-03-11 16:56:52 -0700550 /**
551 * Applies the item info if it is same as what the view is pointing to currently.
552 */
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800553 @Override
554 public void reapplyItemInfo(ItemInfoWithIcon info) {
Sunny Goyal34b65272015-03-11 16:56:52 -0700555 if (getTag() == info) {
Winsonc0880492015-08-21 11:16:27 -0700556 FastBitmapDrawable.State prevState = FastBitmapDrawable.State.NORMAL;
557 if (mIcon instanceof FastBitmapDrawable) {
558 prevState = ((FastBitmapDrawable) mIcon).getCurrentState();
559 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700560 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700561 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700562
Sunny Goyal34b65272015-03-11 16:56:52 -0700563 if (info instanceof AppInfo) {
564 applyFromApplicationInfo((AppInfo) info);
565 } else if (info instanceof ShortcutInfo) {
Sunny Goyal1cd01b02016-11-09 10:43:58 -0800566 applyFromShortcutInfo((ShortcutInfo) info);
Sunny Goyal317698b2015-07-29 11:45:41 -0700567 if ((info.rank < FolderIcon.NUM_ITEMS_IN_PREVIEW) && (info.container >= 0)) {
568 View folderIcon =
569 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
570 if (folderIcon != null) {
571 folderIcon.invalidate();
572 }
573 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700574 } else if (info instanceof PackageItemInfo) {
575 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700576 }
Winsonc0880492015-08-21 11:16:27 -0700577
578 // If we are reapplying over an old icon, then we should update the new icon to the same
579 // state as the old icon
580 if (mIcon instanceof FastBitmapDrawable) {
581 ((FastBitmapDrawable) mIcon).setState(prevState);
582 }
583
Sunny Goyal69b75642015-05-15 17:00:24 -0700584 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700585 }
586 }
587
588 /**
589 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
590 */
591 public void verifyHighRes() {
592 if (mIconLoadRequest != null) {
593 mIconLoadRequest.cancel();
594 mIconLoadRequest = null;
595 }
Sunny Goyal2d7cca12017-01-03 16:52:43 -0800596 if (getTag() instanceof ItemInfoWithIcon) {
597 ItemInfoWithIcon info = (ItemInfoWithIcon) getTag();
Sunny Goyal0e08f162015-05-12 11:32:39 -0700598 if (info.usingLowResIcon) {
599 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
600 .updateIconInBackground(BubbleTextView.this, info);
601 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700602 }
603 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700604
Winson Chungb1777442015-06-16 13:35:04 -0700605 @Override
Winsonc0880492015-08-21 11:16:27 -0700606 public void setFastScrollFocusState(final FastBitmapDrawable.State focusState, boolean animated) {
607 // We can only set the fast scroll focus state on a FastBitmapDrawable
608 if (!(mIcon instanceof FastBitmapDrawable)) {
Winson Chungb1777442015-06-16 13:35:04 -0700609 return;
610 }
611
Winsonc0880492015-08-21 11:16:27 -0700612 FastBitmapDrawable d = (FastBitmapDrawable) mIcon;
613 if (animated) {
614 FastBitmapDrawable.State prevState = d.getCurrentState();
615 if (d.animateState(focusState)) {
616 // If the state was updated, then update the view accordingly
617 animate().scaleX(focusState.viewScale)
618 .scaleY(focusState.viewScale)
619 .setStartDelay(getStartDelayForStateChange(prevState, focusState))
620 .setDuration(d.getDurationForStateChange(prevState, focusState))
621 .start();
622 }
623 } else {
624 if (d.setState(focusState)) {
625 // If the state was updated, then update the view accordingly
626 animate().cancel();
627 setScaleX(focusState.viewScale);
628 setScaleY(focusState.viewScale);
Winson Chungb1777442015-06-16 13:35:04 -0700629 }
630 }
631 }
632
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700633 /**
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700634 * Returns true if the view can show custom shortcuts.
635 */
636 public boolean hasDeepShortcuts() {
637 return !mLauncher.getShortcutIdsForItem((ItemInfo) getTag()).isEmpty();
638 }
639
640 /**
Winsonc0880492015-08-21 11:16:27 -0700641 * Returns the start delay when animating between certain {@link FastBitmapDrawable} states.
642 */
643 private static int getStartDelayForStateChange(final FastBitmapDrawable.State fromState,
644 final FastBitmapDrawable.State toState) {
645 switch (toState) {
646 case NORMAL:
647 switch (fromState) {
648 case FAST_SCROLL_HIGHLIGHTED:
649 return FastBitmapDrawable.FAST_SCROLL_INACTIVE_DURATION / 4;
650 }
651 }
652 return 0;
653 }
654
655 /**
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700656 * Interface to be implemented by the grand parent to allow click shadow effect.
657 */
Winsonc0880492015-08-21 11:16:27 -0700658 public interface BubbleTextShadowHandler {
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700659 void setPressedIcon(BubbleTextView icon, Bitmap background);
660 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800661}