blob: 1bcaab519418804ecb62a44099fe435281278f25 [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
Winson Chungb1777442015-06-16 13:35:04 -070019import android.animation.ObjectAnimator;
Sunny Goyal70660032015-05-14 00:07:08 -070020import android.annotation.TargetApi;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080021import android.content.Context;
Adam Cohen96bb7982014-07-07 11:58:56 -070022import android.content.res.ColorStateList;
Winson Chung656d11c2010-11-29 17:15:47 -080023import android.content.res.Resources;
Sunny Goyal95abbb32014-08-04 10:53:22 -070024import android.content.res.Resources.Theme;
Adam Cohen96bb7982014-07-07 11:58:56 -070025import android.content.res.TypedArray;
Michael Jurka67b2f6c2010-11-17 12:33:46 -080026import android.graphics.Bitmap;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.graphics.Canvas;
Winson Chungb1777442015-06-16 13:35:04 -070028import android.graphics.Paint;
Michael Jurka137142e2011-01-05 20:57:04 -080029import android.graphics.Region;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080030import android.graphics.drawable.Drawable;
Sunny Goyal70660032015-05-14 00:07:08 -070031import android.os.Build;
Winson Chung656d11c2010-11-29 17:15:47 -080032import android.util.AttributeSet;
Sunny Goyal95abbb32014-08-04 10:53:22 -070033import android.util.SparseArray;
Winson Chung5f8afe62013-08-12 16:19:28 -070034import android.util.TypedValue;
Sunny Goyal508da152014-08-14 10:53:27 -070035import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080036import android.view.MotionEvent;
Sunny Goyal317698b2015-07-29 11:45:41 -070037import android.view.View;
Jason Monk02dd7ae2014-04-15 15:23:31 -040038import android.view.ViewConfiguration;
Sunny Goyal4b6eb262015-05-14 19:24:40 -070039import android.view.ViewParent;
Winson Chungb1777442015-06-16 13:35:04 -070040import android.view.animation.AccelerateInterpolator;
41import android.view.animation.DecelerateInterpolator;
Michael Jurkabdb5c532011-02-01 15:05:06 -080042import android.widget.TextView;
Sunny Goyal317698b2015-07-29 11:45:41 -070043
Sunny Goyal34b65272015-03-11 16:56:52 -070044import com.android.launcher3.IconCache.IconLoadRequest;
Hyunyoung Song2bd3d7d2015-05-21 13:04:53 -070045import com.android.launcher3.model.PackageItemInfo;
Sunny Goyal34b65272015-03-11 16:56:52 -070046
The Android Open Source Project31dd5032009-03-03 19:32:27 -080047/**
48 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
49 * because we want to make the bubble taller than the text and TextView's clip is
50 * too aggressive.
51 */
Winson Chungb1777442015-06-16 13:35:04 -070052public class BubbleTextView extends TextView
53 implements BaseRecyclerViewFastScrollBar.FastScrollFocusableView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070054
Sameer Padala8fd74832014-09-08 16:00:29 -070055 private static SparseArray<Theme> sPreloaderThemes = new SparseArray<Theme>(2);
Sunny Goyal95abbb32014-08-04 10:53:22 -070056
Sunny Goyal508da152014-08-14 10:53:27 -070057 private static final float SHADOW_LARGE_RADIUS = 4.0f;
58 private static final float SHADOW_SMALL_RADIUS = 1.75f;
59 private static final float SHADOW_Y_OFFSET = 2.0f;
60 private static final int SHADOW_LARGE_COLOUR = 0xDD000000;
61 private static final int SHADOW_SMALL_COLOUR = 0xCC000000;
Winson Chung656d11c2010-11-29 17:15:47 -080062
Sunny Goyaldfaccf62015-05-11 16:30:44 -070063 private static final int DISPLAY_WORKSPACE = 0;
64 private static final int DISPLAY_ALL_APPS = 1;
65
Winson Chungb1777442015-06-16 13:35:04 -070066 private static final float FAST_SCROLL_FOCUS_MAX_SCALE = 1.15f;
67 private static final int FAST_SCROLL_FOCUS_MODE_NONE = 0;
68 private static final int FAST_SCROLL_FOCUS_MODE_SCALE_ICON = 1;
69 private static final int FAST_SCROLL_FOCUS_MODE_DRAW_CIRCLE_BG = 2;
70 private static final int FAST_SCROLL_FOCUS_FADE_IN_DURATION = 175;
71 private static final int FAST_SCROLL_FOCUS_FADE_OUT_DURATION = 125;
72
Sunny Goyal53d7ee42015-05-22 12:25:45 -070073 private final Launcher mLauncher;
Winson Chungb745afb2015-03-02 11:51:23 -080074 private Drawable mIcon;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080075 private final Drawable mBackground;
76 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;
Winson Chungb745afb2015-03-02 11:51:23 -080090 private int mTextColor;
Winson Chung5f8afe62013-08-12 16:19:28 -070091
Michael Jurkaddd62e92011-02-16 17:49:14 -080092 private boolean mStayPressed;
Sunny Goyal508da152014-08-14 10:53:27 -070093 private boolean mIgnorePressedStateChange;
Sunny Goyal69b75642015-05-15 17:00:24 -070094 private boolean mDisableRelayout = false;
Chris Wrenaeff7ea2014-02-14 16:59:24 -050095
Winson Chungb1777442015-06-16 13:35:04 -070096 private ObjectAnimator mFastScrollFocusAnimator;
97 private Paint mFastScrollFocusBgPaint;
98 private float mFastScrollFocusFraction;
99 private boolean mFastScrollFocused;
100 private final int mFastScrollMode = FAST_SCROLL_FOCUS_MODE_SCALE_ICON;
101
Sunny Goyal34b65272015-03-11 16:56:52 -0700102 private IconLoadRequest mIconLoadRequest;
103
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800104 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700105 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800106 }
107
108 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700109 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800110 }
111
112 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
113 super(context, attrs, defStyle);
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700114 mLauncher = (Launcher) context;
115 DeviceProfile grid = mLauncher.getDeviceProfile();
Adam Cohen96bb7982014-07-07 11:58:56 -0700116
Adam Cohen96bb7982014-07-07 11:58:56 -0700117 TypedArray a = context.obtainStyledAttributes(attrs,
118 R.styleable.BubbleTextView, defStyle, 0);
Adam Cohen96bb7982014-07-07 11:58:56 -0700119 mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true);
Winson Chungb745afb2015-03-02 11:51:23 -0800120 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
Winson Chung93f98ea2015-03-10 16:28:47 -0700121 mDeferShadowGenerationOnTouch =
122 a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700123
124 int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE);
125 int defaultIconSize = grid.iconSizePx;
126 if (display == DISPLAY_WORKSPACE) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700127 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700128 } else if (display == DISPLAY_ALL_APPS) {
Winson Chung44d0aac2015-05-11 18:02:55 -0700129 setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx);
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700130 defaultIconSize = grid.allAppsIconSizePx;
131 }
132
133 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
134 defaultIconSize);
135
Adam Cohen96bb7982014-07-07 11:58:56 -0700136 a.recycle();
137
Sunny Goyal15872da2014-07-08 15:43:54 -0700138 if (mCustomShadowsEnabled) {
139 // Draw the background itself as the parent is drawn twice.
140 mBackground = getBackground();
141 setBackground(null);
142 } else {
143 mBackground = null;
144 }
Winson Chungb745afb2015-03-02 11:51:23 -0800145
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800146 mLongPressHelper = new CheckLongPressHelper(this);
Mady Melloref044dd2015-06-02 15:35:07 -0700147 mStylusEventHelper = new StylusEventHelper(this);
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800148
149 mOutlineHelper = HolographicOutlineHelper.obtain(getContext());
150 if (mCustomShadowsEnabled) {
151 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
152 }
153
Winson Chungb1777442015-06-16 13:35:04 -0700154 if (mFastScrollMode == FAST_SCROLL_FOCUS_MODE_DRAW_CIRCLE_BG) {
155 mFastScrollFocusBgPaint = new Paint();
156 mFastScrollFocusBgPaint.setAntiAlias(true);
157 mFastScrollFocusBgPaint.setColor(
158 getResources().getColor(R.color.container_fastscroll_thumb_active_color));
159 }
160
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800161 setAccessibilityDelegate(LauncherAppState.getInstance().getAccessibilityDelegate());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800162 }
163
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700164 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) {
165 applyFromShortcutInfo(info, iconCache, false);
Winson Chung5f8afe62013-08-12 16:19:28 -0700166 }
167
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700168 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700169 boolean promiseStateChanged) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800170 Bitmap b = info.getIcon(iconCache);
171
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700172 FastBitmapDrawable iconDrawable = mLauncher.createIconDrawable(b);
Sunny Goyal1a745e82014-10-02 15:58:31 -0700173 iconDrawable.setGhostModeEnabled(info.isDisabled != 0);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700174
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700175 setIcon(iconDrawable, mIconSize);
Kenny Guyc2bd8102014-06-30 12:30:31 +0100176 if (info.contentDescription != null) {
177 setContentDescription(info.contentDescription);
178 }
Sunny Goyal508da152014-08-14 10:53:27 -0700179 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800180 setTag(info);
Sunny Goyal34846382014-07-09 00:09:28 -0700181
Sunny Goyal34942622014-08-29 17:20:55 -0700182 if (promiseStateChanged || info.isPromise()) {
183 applyState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500184 }
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800185 }
186
Sunny Goyal508da152014-08-14 10:53:27 -0700187 public void applyFromApplicationInfo(AppInfo info) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700188 setIcon(mLauncher.createIconDrawable(info.iconBitmap), mIconSize);
Sunny Goyal508da152014-08-14 10:53:27 -0700189 setText(info.title);
190 if (info.contentDescription != null) {
191 setContentDescription(info.contentDescription);
192 }
Winson Chung888b3a12015-03-13 11:14:16 -0700193 // We don't need to check the info since it's not a ShortcutInfo
194 super.setTag(info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700195
196 // Verify high res immediately
197 verifyHighRes();
Sunny Goyal508da152014-08-14 10:53:27 -0700198 }
199
Sunny Goyal0e08f162015-05-12 11:32:39 -0700200 public void applyFromPackageItemInfo(PackageItemInfo info) {
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700201 setIcon(mLauncher.createIconDrawable(info.iconBitmap), mIconSize);
Sunny Goyal0e08f162015-05-12 11:32:39 -0700202 setText(info.title);
203 if (info.contentDescription != null) {
204 setContentDescription(info.contentDescription);
205 }
206 // We don't need to check the info since it's not a ShortcutInfo
207 super.setTag(info);
208
209 // Verify high res immediately
210 verifyHighRes();
211 }
212
Winson Chung7501adf2015-06-02 11:24:28 -0700213 /**
214 * Overrides the default long press timeout.
215 */
216 public void setLongPressTimeout(int longPressTimeout) {
217 mLongPressHelper.setLongPressTimeout(longPressTimeout);
218 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700219
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800220 @Override
221 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700222 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800223 mBackgroundSizeChanged = true;
224 }
225 return super.setFrame(left, top, right, bottom);
226 }
227
228 @Override
229 protected boolean verifyDrawable(Drawable who) {
230 return who == mBackground || super.verifyDrawable(who);
231 }
232
233 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700234 public void setTag(Object tag) {
235 if (tag != null) {
236 LauncherModel.checkItemInfo((ItemInfo) tag);
237 }
238 super.setTag(tag);
239 }
240
241 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700242 public void setPressed(boolean pressed) {
243 super.setPressed(pressed);
244
245 if (!mIgnorePressedStateChange) {
246 updateIconState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800247 }
Sunny Goyal508da152014-08-14 10:53:27 -0700248 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800249
Winson Chungb745afb2015-03-02 11:51:23 -0800250 /** Returns the icon for this view. */
251 public Drawable getIcon() {
252 return mIcon;
253 }
254
255 /** Returns whether the layout is horizontal. */
256 public boolean isLayoutHorizontal() {
257 return mLayoutHorizontal;
258 }
259
Sunny Goyal508da152014-08-14 10:53:27 -0700260 private void updateIconState() {
Winson Chungb745afb2015-03-02 11:51:23 -0800261 if (mIcon instanceof FastBitmapDrawable) {
262 ((FastBitmapDrawable) mIcon).setPressed(isPressed() || mStayPressed);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800263 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800264 }
265
266 @Override
267 public boolean onTouchEvent(MotionEvent event) {
268 // Call the superclass onTouchEvent first, because sometimes it changes the state to
269 // isPressed() on an ACTION_UP
270 boolean result = super.onTouchEvent(event);
271
Mady Melloref044dd2015-06-02 15:35:07 -0700272 // Check for a stylus button press, if it occurs cancel any long press checks.
273 if (mStylusEventHelper.checkAndPerformStylusEvent(event)) {
274 mLongPressHelper.cancelLongPress();
275 result = true;
276 }
277
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800278 switch (event.getAction()) {
279 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700280 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800281 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
282 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700283 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700284 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800285 }
Winson Chung88f33452012-02-23 15:23:44 -0800286
Mady Melloref044dd2015-06-02 15:35:07 -0700287 // If we're in a stylus button press, don't check for long press.
288 if (!mStylusEventHelper.inStylusButtonPressed()) {
289 mLongPressHelper.postCheckForLongPress();
290 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800291 break;
292 case MotionEvent.ACTION_CANCEL:
293 case MotionEvent.ACTION_UP:
294 // If we've touched down and up on an item, and it's still not "pressed", then
295 // destroy the pressed outline
296 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700297 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800298 }
Winson Chung88f33452012-02-23 15:23:44 -0800299
300 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800301 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400302 case MotionEvent.ACTION_MOVE:
303 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
304 mLongPressHelper.cancelLongPress();
305 }
306 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800307 }
308 return result;
309 }
310
Michael Jurkaddd62e92011-02-16 17:49:14 -0800311 void setStayPressed(boolean stayPressed) {
312 mStayPressed = stayPressed;
313 if (!stayPressed) {
Sunny Goyal508da152014-08-14 10:53:27 -0700314 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700315 } else {
316 if (mPressedBackground == null) {
317 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
318 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800319 }
Sunny Goyal508da152014-08-14 10:53:27 -0700320
321 // Only show the shadow effect when persistent pressed state is set.
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700322 ViewParent parent = getParent();
323 if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) {
324 ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon(
325 this, mPressedBackground);
Sunny Goyal508da152014-08-14 10:53:27 -0700326 }
327
328 updateIconState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800329 }
330
Sunny Goyal508da152014-08-14 10:53:27 -0700331 void clearPressedBackground() {
332 setPressed(false);
333 setStayPressed(false);
334 }
335
336 @Override
337 public boolean onKeyDown(int keyCode, KeyEvent event) {
338 if (super.onKeyDown(keyCode, event)) {
339 // Pre-create shadow so show immediately on click.
340 if (mPressedBackground == null) {
341 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700342 }
Sunny Goyal508da152014-08-14 10:53:27 -0700343 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700344 }
Sunny Goyal508da152014-08-14 10:53:27 -0700345 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800346 }
347
Sunny Goyal508da152014-08-14 10:53:27 -0700348 @Override
349 public boolean onKeyUp(int keyCode, KeyEvent event) {
350 // Unlike touch events, keypress event propagate pressed state change immediately,
351 // without waiting for onClickHandler to execute. Disable pressed state changes here
352 // to avoid flickering.
353 mIgnorePressedStateChange = true;
354 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700355
Sunny Goyal508da152014-08-14 10:53:27 -0700356 mPressedBackground = null;
357 mIgnorePressedStateChange = false;
358 updateIconState();
359 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800360 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800361
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800362 @Override
363 public void draw(Canvas canvas) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700364 if (!mCustomShadowsEnabled) {
Winson Chungb1777442015-06-16 13:35:04 -0700365 // Draw the fast scroll focus bg if we have one
366 if (mFastScrollMode == FAST_SCROLL_FOCUS_MODE_DRAW_CIRCLE_BG &&
367 mFastScrollFocusFraction > 0f) {
368 DeviceProfile grid = mLauncher.getDeviceProfile();
369 int iconCenterX = getScrollX() + (getWidth() / 2);
370 int iconCenterY = getScrollY() + getPaddingTop() + (grid.iconSizePx / 2);
371 canvas.drawCircle(iconCenterX, iconCenterY,
372 mFastScrollFocusFraction * (getWidth() / 2), mFastScrollFocusBgPaint);
373 }
374
Adam Cohen477828c2013-09-20 12:05:49 -0700375 super.draw(canvas);
Winson Chungb1777442015-06-16 13:35:04 -0700376
Adam Cohen477828c2013-09-20 12:05:49 -0700377 return;
378 }
379
Michael Jurkabdb5c532011-02-01 15:05:06 -0800380 final Drawable background = mBackground;
381 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700382 final int scrollX = getScrollX();
383 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800384
Michael Jurkabdb5c532011-02-01 15:05:06 -0800385 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700386 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800387 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800388 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800389
390 if ((scrollX | scrollY) == 0) {
391 background.draw(canvas);
392 } else {
393 canvas.translate(scrollX, scrollY);
394 background.draw(canvas);
395 canvas.translate(-scrollX, -scrollY);
396 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800397 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800398
399 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800400 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800401 getPaint().clearShadowLayer();
402 super.draw(canvas);
403 return;
404 }
405
Michael Jurkabdb5c532011-02-01 15:05:06 -0800406 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800407 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800408 super.draw(canvas);
409 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700410 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
411 getScrollX() + getWidth(),
412 getScrollY() + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800413 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800414 super.draw(canvas);
415 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800416 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400417
418 @Override
419 protected void onAttachedToWindow() {
420 super.onAttachedToWindow();
Sunny Goyal95abbb32014-08-04 10:53:22 -0700421
Winson Chung656d11c2010-11-29 17:15:47 -0800422 if (mBackground != null) mBackground.setCallback(this);
Sunny Goyal95abbb32014-08-04 10:53:22 -0700423
Winson Chungb745afb2015-03-02 11:51:23 -0800424 if (mIcon instanceof PreloadIconDrawable) {
425 ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme());
Sunny Goyal95abbb32014-08-04 10:53:22 -0700426 }
Jason Monk02dd7ae2014-04-15 15:23:31 -0400427 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400428 }
429
430 @Override
431 protected void onDetachedFromWindow() {
432 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800433 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400434 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700435
Adam Cohen477828c2013-09-20 12:05:49 -0700436 @Override
437 public void setTextColor(int color) {
438 mTextColor = color;
439 super.setTextColor(color);
440 }
441
Adam Cohen96bb7982014-07-07 11:58:56 -0700442 @Override
443 public void setTextColor(ColorStateList colors) {
444 mTextColor = colors.getDefaultColor();
445 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700446 }
447
Winson Chung5f8afe62013-08-12 16:19:28 -0700448 public void setTextVisibility(boolean visible) {
449 Resources res = getResources();
450 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700451 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700452 } else {
Adam Cohen477828c2013-09-20 12:05:49 -0700453 super.setTextColor(res.getColor(android.R.color.transparent));
Winson Chung5f8afe62013-08-12 16:19:28 -0700454 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700455 }
456
Winson Chungaffd7b42010-08-20 15:11:56 -0700457 @Override
Winson Chung88f33452012-02-23 15:23:44 -0800458 public void cancelLongPress() {
459 super.cancelLongPress();
460
461 mLongPressHelper.cancelLongPress();
462 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500463
Sunny Goyal34942622014-08-29 17:20:55 -0700464 public void applyState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700465 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400466 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700467 final boolean isPromise = info.isPromise();
468 final int progressLevel = isPromise ?
469 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
470 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700471
Winson Chungb745afb2015-03-02 11:51:23 -0800472 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700473 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800474 if (mIcon instanceof PreloadIconDrawable) {
475 preloadDrawable = (PreloadIconDrawable) mIcon;
Sunny Goyale755d462014-07-22 13:48:29 -0700476 } else {
Winson Chungb745afb2015-03-02 11:51:23 -0800477 preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme());
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700478 setIcon(preloadDrawable, mIconSize);
Sunny Goyale755d462014-07-22 13:48:29 -0700479 }
480
481 preloadDrawable.setLevel(progressLevel);
Sunny Goyal34942622014-08-29 17:20:55 -0700482 if (promiseStateChanged) {
483 preloadDrawable.maybePerformFinishedAnimation();
Sunny Goyale755d462014-07-22 13:48:29 -0700484 }
Sunny Goyale755d462014-07-22 13:48:29 -0700485 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400486 }
487 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700488
489 private Theme getPreloaderTheme() {
490 Object tag = getTag();
491 int style = ((tag != null) && (tag instanceof ShortcutInfo) &&
492 (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder
493 : R.style.PreloadIcon;
494 Theme theme = sPreloaderThemes.get(style);
495 if (theme == null) {
496 theme = getResources().newTheme();
497 theme.applyStyle(style, true);
498 sPreloaderThemes.put(style, theme);
499 }
500 return theme;
501 }
Winson Chungb745afb2015-03-02 11:51:23 -0800502
503 /**
504 * Sets the icon for this view based on the layout direction.
505 */
Sunny Goyal70660032015-05-14 00:07:08 -0700506 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700507 private Drawable setIcon(Drawable icon, int iconSize) {
Winson Chungb745afb2015-03-02 11:51:23 -0800508 mIcon = icon;
509 if (iconSize != -1) {
510 mIcon.setBounds(0, 0, iconSize, iconSize);
511 }
512 if (mLayoutHorizontal) {
Sunny Goyal70660032015-05-14 00:07:08 -0700513 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
514 setCompoundDrawablesRelative(mIcon, null, null, null);
515 } else {
516 setCompoundDrawables(mIcon, null, null, null);
517 }
Winson Chungb745afb2015-03-02 11:51:23 -0800518 } else {
Sunny Goyal70660032015-05-14 00:07:08 -0700519 setCompoundDrawables(null, mIcon, null, null);
Winson Chungb745afb2015-03-02 11:51:23 -0800520 }
Winson Chungb745afb2015-03-02 11:51:23 -0800521 return icon;
522 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700523
Sunny Goyal69b75642015-05-15 17:00:24 -0700524 @Override
525 public void requestLayout() {
526 if (!mDisableRelayout) {
527 super.requestLayout();
528 }
529 }
530
Sunny Goyal34b65272015-03-11 16:56:52 -0700531 /**
532 * Applies the item info if it is same as what the view is pointing to currently.
533 */
534 public void reapplyItemInfo(final ItemInfo info) {
535 if (getTag() == info) {
536 mIconLoadRequest = null;
Sunny Goyal69b75642015-05-15 17:00:24 -0700537 mDisableRelayout = true;
Sunny Goyal34b65272015-03-11 16:56:52 -0700538 if (info instanceof AppInfo) {
539 applyFromApplicationInfo((AppInfo) info);
540 } else if (info instanceof ShortcutInfo) {
541 applyFromShortcutInfo((ShortcutInfo) info,
Sunny Goyaldfaccf62015-05-11 16:30:44 -0700542 LauncherAppState.getInstance().getIconCache());
Sunny Goyal317698b2015-07-29 11:45:41 -0700543 if ((info.rank < FolderIcon.NUM_ITEMS_IN_PREVIEW) && (info.container >= 0)) {
544 View folderIcon =
545 mLauncher.getWorkspace().getHomescreenIconByItemId(info.container);
546 if (folderIcon != null) {
547 folderIcon.invalidate();
548 }
549 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700550 } else if (info instanceof PackageItemInfo) {
551 applyFromPackageItemInfo((PackageItemInfo) info);
Sunny Goyal34b65272015-03-11 16:56:52 -0700552 }
Sunny Goyal69b75642015-05-15 17:00:24 -0700553 mDisableRelayout = false;
Sunny Goyal34b65272015-03-11 16:56:52 -0700554 }
555 }
556
557 /**
558 * Verifies that the current icon is high-res otherwise posts a request to load the icon.
559 */
560 public void verifyHighRes() {
561 if (mIconLoadRequest != null) {
562 mIconLoadRequest.cancel();
563 mIconLoadRequest = null;
564 }
565 if (getTag() instanceof AppInfo) {
566 AppInfo info = (AppInfo) getTag();
567 if (info.usingLowResIcon) {
568 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
569 .updateIconInBackground(BubbleTextView.this, info);
570 }
571 } else if (getTag() instanceof ShortcutInfo) {
572 ShortcutInfo info = (ShortcutInfo) getTag();
573 if (info.usingLowResIcon) {
574 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
575 .updateIconInBackground(BubbleTextView.this, info);
576 }
Sunny Goyal0e08f162015-05-12 11:32:39 -0700577 } else if (getTag() instanceof PackageItemInfo) {
578 PackageItemInfo info = (PackageItemInfo) getTag();
579 if (info.usingLowResIcon) {
580 mIconLoadRequest = LauncherAppState.getInstance().getIconCache()
581 .updateIconInBackground(BubbleTextView.this, info);
582 }
Sunny Goyal34b65272015-03-11 16:56:52 -0700583 }
584 }
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700585
Winson Chungb1777442015-06-16 13:35:04 -0700586 // Setters & getters for the animation
587 public void setFastScrollFocus(float fraction) {
588 mFastScrollFocusFraction = fraction;
589 if (mFastScrollMode == FAST_SCROLL_FOCUS_MODE_SCALE_ICON) {
590 setScaleX(1f + fraction * (FAST_SCROLL_FOCUS_MAX_SCALE - 1f));
591 setScaleY(1f + fraction * (FAST_SCROLL_FOCUS_MAX_SCALE - 1f));
592 } else {
593 invalidate();
594 }
595 }
596
597 public float getFastScrollFocus() {
598 return mFastScrollFocusFraction;
599 }
600
601 @Override
602 public void setFastScrollFocused(final boolean focused, boolean animated) {
603 if (mFastScrollMode == FAST_SCROLL_FOCUS_MODE_NONE) {
604 return;
605 }
606
607 if (mFastScrollFocused != focused) {
608 mFastScrollFocused = focused;
609
610 if (animated) {
611 // Clean up the previous focus animator
612 if (mFastScrollFocusAnimator != null) {
613 mFastScrollFocusAnimator.cancel();
614 }
615 mFastScrollFocusAnimator = ObjectAnimator.ofFloat(this, "fastScrollFocus",
616 focused ? 1f : 0f);
617 if (focused) {
618 mFastScrollFocusAnimator.setInterpolator(new DecelerateInterpolator());
619 } else {
620 mFastScrollFocusAnimator.setInterpolator(new AccelerateInterpolator());
621 }
622 mFastScrollFocusAnimator.setDuration(focused ?
623 FAST_SCROLL_FOCUS_FADE_IN_DURATION : FAST_SCROLL_FOCUS_FADE_OUT_DURATION);
624 mFastScrollFocusAnimator.start();
625 } else {
626 mFastScrollFocusFraction = focused ? 1f : 0f;
627 }
628 }
629 }
630
Sunny Goyal4b6eb262015-05-14 19:24:40 -0700631 /**
632 * Interface to be implemented by the grand parent to allow click shadow effect.
633 */
634 public static interface BubbleTextShadowHandler {
635 void setPressedIcon(BubbleTextView icon, Bitmap background);
636 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800637}