blob: 0742b0e50fb5c56b6d8f4ad30e1aaca21aa66751 [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
Sunny Goyal70660032015-05-14 00:07:08 -070019import android.annotation.TargetApi;
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;
Winson Chung656d11c2010-11-29 17:15:47 -080022import android.content.res.Resources;
Sunny Goyal95abbb32014-08-04 10:53:22 -070023import android.content.res.Resources.Theme;
Adam Cohen96bb7982014-07-07 11:58:56 -070024import android.content.res.TypedArray;
Michael Jurka67b2f6c2010-11-17 12:33:46 -080025import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026import android.graphics.Canvas;
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;
Sunny Goyal70660032015-05-14 00:07:08 -070029import android.os.Build;
Winson Chung656d11c2010-11-29 17:15:47 -080030import android.util.AttributeSet;
Sunny Goyal95abbb32014-08-04 10:53:22 -070031import android.util.SparseArray;
Winson Chung5f8afe62013-08-12 16:19:28 -070032import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070033import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080034import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070035import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040036import android.view.ViewConfiguration;
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;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070041import com.android.launcher3.model.PackageItemInfo;
Sunny Goyal34b65272015-03-11 16:56:52 -070042
The Android Open Source Project31dd5032009-03-03 19:32:27 -080043/**
44 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
45 * because we want to make the bubble taller than the text and TextView's clip is
46 * too aggressive.
47 */
Winson Chungb1777442015-06-16 13:35:04 -070048public class BubbleTextView extends TextView
49 implements BaseRecyclerViewFastScrollBar.FastScrollFocusableView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070050
Sameer Padala8fd74832014-09-08 16:00:29 -070051 private static SparseArray<Theme> sPreloaderThemes = new SparseArray<Theme>(2);
Sunny Goyal95abbb32014-08-04 10:53:22 -070052
Sunny Goyal508da152014-08-14 10:53:27 -070053 private static final float SHADOW_LARGE_RADIUS = 4.0f;
54 private static final float SHADOW_SMALL_RADIUS = 1.75f;
55 private static final float SHADOW_Y_OFFSET = 2.0f;
56 private static final int SHADOW_LARGE_COLOUR = 0xDD000000;
57 private static final int SHADOW_SMALL_COLOUR = 0xCC000000;
Winson Chung656d11c2010-11-29 17:15:47 -080058
Sunny Goyaldfaccf62015-05-11 16:30:44 -070059 private static final int DISPLAY_WORKSPACE = 0;
60 private static final int DISPLAY_ALL_APPS = 1;
61
Sunny Goyal53d7ee42015-05-22 12:25:45 -070062 private final Launcher mLauncher;
Winson Chungb745afb2015-03-02 11:51:23 -080063 private Drawable mIcon;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080064 private final Drawable mBackground;
65 private final CheckLongPressHelper mLongPressHelper;
66 private final HolographicOutlineHelper mOutlineHelper;
Mady Melloref044dd2015-06-02 15:35:07 -070067 private final StylusEventHelper mStylusEventHelper;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080068
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080069 private boolean mBackgroundSizeChanged;
70
Sunny Goyal508da152014-08-14 10:53:27 -070071 private Bitmap mPressedBackground;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080072
Jason Monk02dd7ae2014-04-15 15:23:31 -040073 private float mSlop;
74
Winson Chung93f98ea2015-03-10 16:28:47 -070075 private final boolean mDeferShadowGenerationOnTouch;
Sunny Goyal15872da2014-07-08 15:43:54 -070076 private final boolean mCustomShadowsEnabled;
Winson Chungb745afb2015-03-02 11:51:23 -080077 private final boolean mLayoutHorizontal;
78 private final int mIconSize;
Winson Chungb745afb2015-03-02 11:51:23 -080079 private int mTextColor;
Winson Chung5f8afe62013-08-12 16:19:28 -070080
Michael Jurkaddd62e92011-02-16 17:49:14 -080081 private boolean mStayPressed;
Sunny Goyal508da152014-08-14 10:53:27 -070082 private boolean mIgnorePressedStateChange;
Sunny Goyal69b75642015-05-15 17:00:24 -070083 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -050084
Sunny Goyal34b65272015-03-11 16:56:52 -070085 private IconLoadRequest mIconLoadRequest;
86
The Android Open Source Project31dd5032009-03-03 19:32:27 -080087 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -070088 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080089 }
90
91 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -070092 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080093 }
94
95 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
96 super(context, attrs, defStyle);
Sunny Goyal53d7ee42015-05-22 12:25:45 -070097 mLauncher = (Launcher) context;
98 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen96bb7982014-07-07 11:58:56 -070099
Adam Cohen96bb7982014-07-07 11:58:56 -0700100 TypedArray a = context.obtainStyledAttributes(attrs,
101 R.styleable.BubbleTextView, defStyle, 0);
Adam Cohen96bb7982014-07-07 11:58:56 -0700102 mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true);
Winson Chungb745afb2015-03-02 11:51:23 -0800103 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Winson Chung93f98ea2015-03-10 16:28:47 -0700104 mDeferShadowGenerationOnTouch =
105 a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700106
107 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
108 int defaultIconSize = grid.iconSizePx;
109 if (display == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700110 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700111 } else if (display == DISPLAY_ALL_APPS) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700112 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700113 defaultIconSize = grid.allAppsIconSizePx;
114 }
115
116 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
117 defaultIconSize);
118
Adam Cohen96bb7982014-07-07 11:58:56 -0700119 a.recycle();
120
Sunny Goyal15872da2014-07-08 15:43:54 -0700121 if (mCustomShadowsEnabled) {
122 // Draw the background itself as the parent is drawn twice.
123 mBackground = getBackground();
124 setBackground(null);
125 } else {
126 mBackground = null;
127 }
Winson Chungb745afb2015-03-02 11:51:23 -0800128
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800129 mLongPressHelper = new CheckLongPressHelper(this);
Mady Melloref044dd2015-06-02 15:35:07 -0700130 mStylusEventHelper = new StylusEventHelper(this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800131
132 mOutlineHelper = HolographicOutlineHelper.obtain(getContext());
133 if (mCustomShadowsEnabled) {
134 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
135 }
136
137 setAccessibilityDelegate(LauncherAppState.getInstance().getAccessibilityDelegate());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800138 }
139
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700140 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
141 applyFromShortcutInfo(info, iconCache, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700142 }
143
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700144 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700145 boolean promiseStateChanged) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800146 Bitmap b = info.getIcon(iconCache);
147
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700148 FastBitmapDrawable iconDrawable = mLauncher.createIconDrawable(b);
Winsonc0880492015-08-21 11:16:27 -0700149 if (info.isDisabled != 0) {
150 iconDrawable.setState(FastBitmapDrawable.State.DISABLED);
151 }
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700152 setIcon(iconDrawable, mIconSize);
Kenny Guyc2bd8102014-06-30 12:30:31 +0100153 if (info.contentDescription != null) {
154 setContentDescription(info.contentDescription);
155 }
Sunny Goyal508da152014-08-14 10:53:27 -0700156 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800157 setTag(info);
Sunny Goyal34846382014-07-09 00:09:28 -0700158
Sunny Goyal34942622014-08-29 17:20:55 -0700159 if (promiseStateChanged || info.isPromise()) {
160 applyState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500161 }
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800162 }
163
Sunny Goyal508da152014-08-14 10:53:27 -0700164 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700165 setIcon(mLauncher.createIconDrawable(info.iconBitmap), mIconSize);
Sunny Goyal508da152014-08-14 10:53:27 -0700166 setText(info.title);
167 if (info.contentDescription != null) {
168 setContentDescription(info.contentDescription);
169 }
Winson Chung888b3a12015-03-13 11:14:16 -0700170 // We don't need to check the info since it's not a ShortcutInfo
171 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700172
173 // Verify high res immediately
174 verifyHighRes();
Sunny Goyal508da152014-08-14 10:53:27 -0700175 }
176
Sunny Goyal0e08f162015-05-12 11:32:39 -0700177 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700178 setIcon(mLauncher.createIconDrawable(info.iconBitmap), mIconSize);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700179 setText(info.title);
180 if (info.contentDescription != null) {
181 setContentDescription(info.contentDescription);
182 }
183 // We don't need to check the info since it's not a ShortcutInfo
184 super.setTag(info);
185
186 // Verify high res immediately
187 verifyHighRes();
188 }
189
Winson Chung7501adf2015-06-02 11:24:28 -0700190 /**
191 * Overrides the default long press timeout.
192 */
193 public void setLongPressTimeout(int longPressTimeout) {
194 mLongPressHelper.setLongPressTimeout(longPressTimeout);
195 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700196
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800197 @Override
198 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700199 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800200 mBackgroundSizeChanged = true;
201 }
202 return super.setFrame(left, top, right, bottom);
203 }
204
205 @Override
206 protected boolean verifyDrawable(Drawable who) {
207 return who == mBackground || super.verifyDrawable(who);
208 }
209
210 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700211 public void setTag(Object tag) {
212 if (tag != null) {
213 LauncherModel.checkItemInfo((ItemInfo) tag);
214 }
215 super.setTag(tag);
216 }
217
218 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700219 public void setPressed(boolean pressed) {
220 super.setPressed(pressed);
221
222 if (!mIgnorePressedStateChange) {
223 updateIconState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800224 }
Sunny Goyal508da152014-08-14 10:53:27 -0700225 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800226
Winson Chungb745afb2015-03-02 11:51:23 -0800227 /** Returns the icon for this view. */
228 public Drawable getIcon() {
229 return mIcon;
230 }
231
232 /** Returns whether the layout is horizontal. */
233 public boolean isLayoutHorizontal() {
234 return mLayoutHorizontal;
235 }
236
Sunny Goyal508da152014-08-14 10:53:27 -0700237 private void updateIconState() {
Winson Chungb745afb2015-03-02 11:51:23 -0800238 if (mIcon instanceof FastBitmapDrawable) {
Winsonc0880492015-08-21 11:16:27 -0700239 FastBitmapDrawable d = (FastBitmapDrawable) mIcon;
240 if (isPressed() || mStayPressed) {
241 d.animateState(FastBitmapDrawable.State.PRESSED);
242 } else {
243 d.animateState(FastBitmapDrawable.State.NORMAL);
244 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800245 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800246 }
247
248 @Override
249 public boolean onTouchEvent(MotionEvent event) {
250 // Call the superclass onTouchEvent first, because sometimes it changes the state to
251 // isPressed() on an ACTION_UP
252 boolean result = super.onTouchEvent(event);
253
Mady Melloref044dd2015-06-02 15:35:07 -0700254 // Check for a stylus button press, if it occurs cancel any long press checks.
255 if (mStylusEventHelper.checkAndPerformStylusEvent(event)) {
256 mLongPressHelper.cancelLongPress();
257 result = true;
258 }
259
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800260 switch (event.getAction()) {
261 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700262 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800263 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
264 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700265 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700266 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800267 }
Winson Chung88f33452012-02-23 15:23:44 -0800268
Mady Melloref044dd2015-06-02 15:35:07 -0700269 // If we're in a stylus button press, don't check for long press.
270 if (!mStylusEventHelper.inStylusButtonPressed()) {
271 mLongPressHelper.postCheckForLongPress();
272 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800273 break;
274 case MotionEvent.ACTION_CANCEL:
275 case MotionEvent.ACTION_UP:
276 // If we've touched down and up on an item, and it's still not "pressed", then
277 // destroy the pressed outline
278 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700279 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800280 }
Winson Chung88f33452012-02-23 15:23:44 -0800281
282 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800283 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400284 case MotionEvent.ACTION_MOVE:
285 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
286 mLongPressHelper.cancelLongPress();
287 }
288 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800289 }
290 return result;
291 }
292
Michael Jurkaddd62e92011-02-16 17:49:14 -0800293 void setStayPressed(boolean stayPressed) {
294 mStayPressed = stayPressed;
295 if (!stayPressed) {
Sunny Goyal508da152014-08-14 10:53:27 -0700296 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700297 } else {
298 if (mPressedBackground == null) {
299 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
300 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800301 }
Sunny Goyal508da152014-08-14 10:53:27 -0700302
303 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700304 ViewParent parent = getParent();
305 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
306 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
307 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700308 }
309
310 updateIconState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800311 }
312
Sunny Goyal508da152014-08-14 10:53:27 -0700313 void clearPressedBackground() {
314 setPressed(false);
315 setStayPressed(false);
316 }
317
318 @Override
319 public boolean onKeyDown(int keyCode, KeyEvent event) {
320 if (super.onKeyDown(keyCode, event)) {
321 // Pre-create shadow so show immediately on click.
322 if (mPressedBackground == null) {
323 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700324 }
Sunny Goyal508da152014-08-14 10:53:27 -0700325 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700326 }
Sunny Goyal508da152014-08-14 10:53:27 -0700327 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800328 }
329
Sunny Goyal508da152014-08-14 10:53:27 -0700330 @Override
331 public boolean onKeyUp(int keyCode, KeyEvent event) {
332 // Unlike touch events, keypress event propagate pressed state change immediately,
333 // without waiting for onClickHandler to execute. Disable pressed state changes here
334 // to avoid flickering.
335 mIgnorePressedStateChange = true;
336 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700337
Sunny Goyal508da152014-08-14 10:53:27 -0700338 mPressedBackground = null;
339 mIgnorePressedStateChange = false;
340 updateIconState();
341 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800342 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800343
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800344 @Override
345 public void draw(Canvas canvas) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700346 if (!mCustomShadowsEnabled) {
Adam Cohen477828c2013-09-20 12:05:49 -0700347 super.draw(canvas);
348 return;
349 }
350
Michael Jurkabdb5c532011-02-01 15:05:06 -0800351 final Drawable background = mBackground;
352 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700353 final int scrollX = getScrollX();
354 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800355
Michael Jurkabdb5c532011-02-01 15:05:06 -0800356 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700357 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800358 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800359 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800360
361 if ((scrollX | scrollY) == 0) {
362 background.draw(canvas);
363 } else {
364 canvas.translate(scrollX, scrollY);
365 background.draw(canvas);
366 canvas.translate(-scrollX, -scrollY);
367 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800368 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800369
370 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800371 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800372 getPaint().clearShadowLayer();
373 super.draw(canvas);
374 return;
375 }
376
Michael Jurkabdb5c532011-02-01 15:05:06 -0800377 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800378 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800379 super.draw(canvas);
380 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700381 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
382 getScrollX() + getWidth(),
383 getScrollY() + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800384 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800385 super.draw(canvas);
386 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800387 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400388
389 @Override
390 protected void onAttachedToWindow() {
391 super.onAttachedToWindow();
Sunny Goyal95abbb32014-08-04 10:53:22 -0700392
Winson Chung656d11c2010-11-29 17:15:47 -0800393 if (mBackground != null) mBackground.setCallback(this);
Sunny Goyal95abbb32014-08-04 10:53:22 -0700394
Winson Chungb745afb2015-03-02 11:51:23 -0800395 if (mIcon instanceof PreloadIconDrawable) {
396 ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme());
Sunny Goyal95abbb32014-08-04 10:53:22 -0700397 }
Jason Monk02dd7ae2014-04-15 15:23:31 -0400398 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400399 }
400
401 @Override
402 protected void onDetachedFromWindow() {
403 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800404 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400405 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700406
Adam Cohen477828c2013-09-20 12:05:49 -0700407 @Override
408 public void setTextColor(int color) {
409 mTextColor = color;
410 super.setTextColor(color);
411 }
412
Adam Cohen96bb7982014-07-07 11:58:56 -0700413 @Override
414 public void setTextColor(ColorStateList colors) {
415 mTextColor = colors.getDefaultColor();
416 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700417 }
418
Winson Chung5f8afe62013-08-12 16:19:28 -0700419 public void setTextVisibility(boolean visible) {
420 Resources res = getResources();
421 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700422 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700423 } else {
Adam Cohen477828c2013-09-20 12:05:49 -0700424 super.setTextColor(res.getColor(android.R.color.transparent));
Winson Chung5f8afe62013-08-12 16:19:28 -0700425 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700426 }
427
Winson Chungaffd7b42010-08-20 15:11:56 -0700428 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800429 public void cancelLongPress() {
430 super.cancelLongPress();
431
432 mLongPressHelper.cancelLongPress();
433 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500434
Sunny Goyal34942622014-08-29 17:20:55 -0700435 public void applyState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700436 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400437 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700438 final boolean isPromise = info.isPromise();
439 final int progressLevel = isPromise ?
440 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
441 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700442
Winson Chungb745afb2015-03-02 11:51:23 -0800443 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700444 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800445 if (mIcon instanceof PreloadIconDrawable) {
446 preloadDrawable = (PreloadIconDrawable) mIcon;
Sunny Goyale755d462014-07-22 13:48:29 -0700447 } else {
Winson Chungb745afb2015-03-02 11:51:23 -0800448 preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme());
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700449 setIcon(preloadDrawable, mIconSize);
Sunny Goyale755d462014-07-22 13:48:29 -0700450 }
451
452 preloadDrawable.setLevel(progressLevel);
Sunny Goyal34942622014-08-29 17:20:55 -0700453 if (promiseStateChanged) {
454 preloadDrawable.maybePerformFinishedAnimation();
Sunny Goyale755d462014-07-22 13:48:29 -0700455 }
Sunny Goyale755d462014-07-22 13:48:29 -0700456 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400457 }
458 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700459
460 private Theme getPreloaderTheme() {
461 Object tag = getTag();
462 int style = ((tag != null) && (tag instanceof ShortcutInfo) &&
463 (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder
464 : R.style.PreloadIcon;
465 Theme theme = sPreloaderThemes.get(style);
466 if (theme == null) {
467 theme = getResources().newTheme();
468 theme.applyStyle(style, true);
469 sPreloaderThemes.put(style, theme);
470 }
471 return theme;
472 }
Winson Chungb745afb2015-03-02 11:51:23 -0800473
474 /**
475 * Sets the icon for this view based on the layout direction.
476 */
Sunny Goyal70660032015-05-14 00:07:08 -0700477 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700478 private Drawable setIcon(Drawable icon, int iconSize) {
Winson Chungb745afb2015-03-02 11:51:23 -0800479 mIcon = icon;
480 if (iconSize != -1) {
481 mIcon.setBounds(0, 0, iconSize, iconSize);
482 }
483 if (mLayoutHorizontal) {
Sunny Goyal9fc953b2015-08-17 12:24:25 -0700484 if (Utilities.ATLEAST_JB_MR1) {
Sunny Goyal70660032015-05-14 00:07:08 -0700485 setCompoundDrawablesRelative(mIcon, null, null, null);
486 } else {
487 setCompoundDrawables(mIcon, null, null, null);
488 }
Winson Chungb745afb2015-03-02 11:51:23 -0800489 } else {
Sunny Goyal70660032015-05-14 00:07:08 -0700490 setCompoundDrawables(null, mIcon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800491 }
Winson Chungb745afb2015-03-02 11:51:23 -0800492 return icon;
493 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700494
Sunny Goyal69b75642015-05-15 17:00:24 -0700495 @Override
496 public void requestLayout() {
497 if (!mDisableRelayout) {
498 super.requestLayout();
499 }
500 }
501
Sunny Goyal34b65272015-03-11 16:56:52 -0700502 /**
503 * Applies the item info if it is same as what the view is pointing to currently.
504 */
505 public void reapplyItemInfo(final ItemInfo info) {
506 if (getTag() == info) {
Winsonc0880492015-08-21 11:16:27 -0700507 FastBitmapDrawable.State prevState = FastBitmapDrawable.State.NORMAL;
508 if (mIcon instanceof FastBitmapDrawable) {
509 prevState = ((FastBitmapDrawable) mIcon).getCurrentState();
510 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700511 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700512 mDisableRelayout = true;
Winsonc0880492015-08-21 11:16:27 -0700513
Sunny Goyal34b65272015-03-11 16:56:52 -0700514 if (info instanceof AppInfo) {
515 applyFromApplicationInfo((AppInfo) info);
516 } else if (info instanceof ShortcutInfo) {
517 applyFromShortcutInfo((ShortcutInfo) info,
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700518 LauncherAppState.getInstance().getIconCache());
Sunny Goyal317698b2015-07-29 11:45:41 -0700519 if ((info.rank < FolderIcon.NUM_ITEMS_IN_PREVIEW) && (info.container >= 0)) {
520 View folderIcon =
521 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
522 if (folderIcon != null) {
523 folderIcon.invalidate();
524 }
525 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700526 } else if (info instanceof PackageItemInfo) {
527 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700528 }
Winsonc0880492015-08-21 11:16:27 -0700529
530 // If we are reapplying over an old icon, then we should update the new icon to the same
531 // state as the old icon
532 if (mIcon instanceof FastBitmapDrawable) {
533 ((FastBitmapDrawable) mIcon).setState(prevState);
534 }
535
Sunny Goyal69b75642015-05-15 17:00:24 -0700536 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700537 }
538 }
539
540 /**
541 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
542 */
543 public void verifyHighRes() {
544 if (mIconLoadRequest != null) {
545 mIconLoadRequest.cancel();
546 mIconLoadRequest = null;
547 }
548 if (getTag() instanceof AppInfo) {
549 AppInfo info = (AppInfo) getTag();
550 if (info.usingLowResIcon) {
551 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
552 .updateIconInBackground(BubbleTextView.this, info);
553 }
554 } else if (getTag() instanceof ShortcutInfo) {
555 ShortcutInfo info = (ShortcutInfo) getTag();
556 if (info.usingLowResIcon) {
557 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
558 .updateIconInBackground(BubbleTextView.this, info);
559 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700560 } else if (getTag() instanceof PackageItemInfo) {
561 PackageItemInfo info = (PackageItemInfo) getTag();
562 if (info.usingLowResIcon) {
563 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
564 .updateIconInBackground(BubbleTextView.this, info);
565 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700566 }
567 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700568
Winson Chungb1777442015-06-16 13:35:04 -0700569 @Override
Winsonc0880492015-08-21 11:16:27 -0700570 public void setFastScrollFocusState(final FastBitmapDrawable.State focusState, boolean animated) {
571 // We can only set the fast scroll focus state on a FastBitmapDrawable
572 if (!(mIcon instanceof FastBitmapDrawable)) {
Winson Chungb1777442015-06-16 13:35:04 -0700573 return;
574 }
575
Winsonc0880492015-08-21 11:16:27 -0700576 FastBitmapDrawable d = (FastBitmapDrawable) mIcon;
577 if (animated) {
578 FastBitmapDrawable.State prevState = d.getCurrentState();
579 if (d.animateState(focusState)) {
580 // If the state was updated, then update the view accordingly
581 animate().scaleX(focusState.viewScale)
582 .scaleY(focusState.viewScale)
583 .setStartDelay(getStartDelayForStateChange(prevState, focusState))
584 .setDuration(d.getDurationForStateChange(prevState, focusState))
585 .start();
586 }
587 } else {
588 if (d.setState(focusState)) {
589 // If the state was updated, then update the view accordingly
590 animate().cancel();
591 setScaleX(focusState.viewScale);
592 setScaleY(focusState.viewScale);
Winson Chungb1777442015-06-16 13:35:04 -0700593 }
594 }
595 }
596
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700597 /**
Winsonc0880492015-08-21 11:16:27 -0700598 * Returns the start delay when animating between certain {@link FastBitmapDrawable} states.
599 */
600 private static int getStartDelayForStateChange(final FastBitmapDrawable.State fromState,
601 final FastBitmapDrawable.State toState) {
602 switch (toState) {
603 case NORMAL:
604 switch (fromState) {
605 case FAST_SCROLL_HIGHLIGHTED:
606 return FastBitmapDrawable.FAST_SCROLL_INACTIVE_DURATION / 4;
607 }
608 }
609 return 0;
610 }
611
612 /**
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700613 * Interface to be implemented by the grand parent to allow click shadow effect.
614 */
Winsonc0880492015-08-21 11:16:27 -0700615 public interface BubbleTextShadowHandler {
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700616 void setPressedIcon(BubbleTextView icon, Bitmap background);
617 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800618}