blob: fabae5702d5fdb3b16505e0581772f36d134fd60 [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;
Michael Jurka137142e2011-01-05 20:57:04 -080026import android.graphics.Region;
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027import android.graphics.drawable.Drawable;
Winson Chung656d11c2010-11-29 17:15:47 -080028import android.util.AttributeSet;
Sunny Goyal95abbb32014-08-04 10:53:22 -070029import android.util.SparseArray;
Winson Chung5f8afe62013-08-12 16:19:28 -070030import android.util.TypedValue;
Winson Chungb745afb2015-03-02 11:51:23 -080031import android.view.Gravity;
Sunny Goyal508da152014-08-14 10:53:27 -070032import android.view.KeyEvent;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080033import android.view.MotionEvent;
Jason Monk02dd7ae2014-04-15 15:23:31 -040034import android.view.ViewConfiguration;
Michael Jurkabdb5c532011-02-01 15:05:06 -080035import android.widget.TextView;
Romain Guyedcce092010-03-04 13:03:17 -080036
The Android Open Source Project31dd5032009-03-03 19:32:27 -080037/**
38 * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan
39 * because we want to make the bubble taller than the text and TextView's clip is
40 * too aggressive.
41 */
Michael Jurka08ee7702011-08-11 16:53:35 -070042public class BubbleTextView extends TextView {
Sunny Goyal95abbb32014-08-04 10:53:22 -070043
Sameer Padala8fd74832014-09-08 16:00:29 -070044 private static SparseArray<Theme> sPreloaderThemes = new SparseArray<Theme>(2);
Sunny Goyal95abbb32014-08-04 10:53:22 -070045
Sunny Goyal508da152014-08-14 10:53:27 -070046 private static final float SHADOW_LARGE_RADIUS = 4.0f;
47 private static final float SHADOW_SMALL_RADIUS = 1.75f;
48 private static final float SHADOW_Y_OFFSET = 2.0f;
49 private static final int SHADOW_LARGE_COLOUR = 0xDD000000;
50 private static final int SHADOW_SMALL_COLOUR = 0xCC000000;
Winson Chung656d11c2010-11-29 17:15:47 -080051 static final float PADDING_V = 3.0f;
52
Winson Chungb745afb2015-03-02 11:51:23 -080053 private Drawable mIcon;
Sunny Goyal71b5c0b2015-01-08 16:59:04 -080054 private final Drawable mBackground;
55 private final CheckLongPressHelper mLongPressHelper;
56 private final HolographicOutlineHelper mOutlineHelper;
57
58 // TODO: Remove custom background handling code, as no instance of BubbleTextView use any
59 // background.
60 private boolean mBackgroundSizeChanged;
61
Sunny Goyal508da152014-08-14 10:53:27 -070062 private Bitmap mPressedBackground;
Michael Jurka38b4f7c2010-12-14 16:46:39 -080063
Jason Monk02dd7ae2014-04-15 15:23:31 -040064 private float mSlop;
65
Winson Chung93f98ea2015-03-10 16:28:47 -070066 private final boolean mDeferShadowGenerationOnTouch;
Sunny Goyal15872da2014-07-08 15:43:54 -070067 private final boolean mCustomShadowsEnabled;
Winson Chungb745afb2015-03-02 11:51:23 -080068 private final boolean mLayoutHorizontal;
69 private final int mIconSize;
70 private final int mIconPaddingSize;
71 private final int mTextSize;
72 private int mTextColor;
Winson Chung5f8afe62013-08-12 16:19:28 -070073
Michael Jurkaddd62e92011-02-16 17:49:14 -080074 private boolean mStayPressed;
Sunny Goyal508da152014-08-14 10:53:27 -070075 private boolean mIgnorePressedStateChange;
Chris Wrenaeff7ea2014-02-14 16:59:24 -050076
The Android Open Source Project31dd5032009-03-03 19:32:27 -080077 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -070078 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080079 }
80
81 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -070082 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083 }
84
85 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
86 super(context, attrs, defStyle);
Winson Chungb745afb2015-03-02 11:51:23 -080087 LauncherAppState app = LauncherAppState.getInstance();
88 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Adam Cohen96bb7982014-07-07 11:58:56 -070089
Adam Cohen96bb7982014-07-07 11:58:56 -070090 TypedArray a = context.obtainStyledAttributes(attrs,
91 R.styleable.BubbleTextView, defStyle, 0);
Adam Cohen96bb7982014-07-07 11:58:56 -070092 mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true);
Winson Chungb745afb2015-03-02 11:51:23 -080093 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
94 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
95 grid.allAppsIconSizePx);
96 mIconPaddingSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconPaddingOverride,
97 grid.iconDrawablePaddingPx);
98 mTextSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_textSizeOverride,
99 grid.allAppsIconTextSizePx);
Winson Chung93f98ea2015-03-10 16:28:47 -0700100 mDeferShadowGenerationOnTouch =
101 a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false);
Adam Cohen96bb7982014-07-07 11:58:56 -0700102 a.recycle();
103
Sunny Goyal15872da2014-07-08 15:43:54 -0700104 if (mCustomShadowsEnabled) {
105 // Draw the background itself as the parent is drawn twice.
106 mBackground = getBackground();
107 setBackground(null);
108 } else {
109 mBackground = null;
110 }
Winson Chungb745afb2015-03-02 11:51:23 -0800111
112 // If we are laying out horizontal, then center the text vertically
113 if (mLayoutHorizontal) {
114 setGravity(Gravity.CENTER_VERTICAL);
115 }
116
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800117 mLongPressHelper = new CheckLongPressHelper(this);
118
119 mOutlineHelper = HolographicOutlineHelper.obtain(getContext());
120 if (mCustomShadowsEnabled) {
121 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
122 }
123
124 setAccessibilityDelegate(LauncherAppState.getInstance().getAccessibilityDelegate());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800125 }
126
Winson Chung5f8afe62013-08-12 16:19:28 -0700127 public void onFinishInflate() {
128 super.onFinishInflate();
129
130 // Ensure we are using the right text size
Winson Chungb745afb2015-03-02 11:51:23 -0800131 setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize);
Winson Chung5f8afe62013-08-12 16:19:28 -0700132 }
133
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700134 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
135 boolean setDefaultPadding) {
Sunny Goyal34942622014-08-29 17:20:55 -0700136 applyFromShortcutInfo(info, iconCache, setDefaultPadding, false);
137 }
138
139 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
140 boolean setDefaultPadding, boolean promiseStateChanged) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800141 Bitmap b = info.getIcon(iconCache);
142
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700143 FastBitmapDrawable iconDrawable = Utilities.createIconDrawable(b);
Sunny Goyal1a745e82014-10-02 15:58:31 -0700144 iconDrawable.setGhostModeEnabled(info.isDisabled != 0);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700145
Winson Chungb745afb2015-03-02 11:51:23 -0800146 setIcon(iconDrawable, mIconSize, setDefaultPadding ? mIconPaddingSize : -1);
Kenny Guyc2bd8102014-06-30 12:30:31 +0100147 if (info.contentDescription != null) {
148 setContentDescription(info.contentDescription);
149 }
Sunny Goyal508da152014-08-14 10:53:27 -0700150 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800151 setTag(info);
Sunny Goyal34846382014-07-09 00:09:28 -0700152
Sunny Goyal34942622014-08-29 17:20:55 -0700153 if (promiseStateChanged || info.isPromise()) {
154 applyState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500155 }
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800156 }
157
Sunny Goyal508da152014-08-14 10:53:27 -0700158 public void applyFromApplicationInfo(AppInfo info) {
Winson Chungb745afb2015-03-02 11:51:23 -0800159 setIcon(Utilities.createIconDrawable(info.iconBitmap), mIconSize, mIconPaddingSize);
Sunny Goyal508da152014-08-14 10:53:27 -0700160 setText(info.title);
161 if (info.contentDescription != null) {
162 setContentDescription(info.contentDescription);
163 }
164 setTag(info);
165 }
166
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 @Override
168 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700169 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800170 mBackgroundSizeChanged = true;
171 }
172 return super.setFrame(left, top, right, bottom);
173 }
174
175 @Override
176 protected boolean verifyDrawable(Drawable who) {
177 return who == mBackground || super.verifyDrawable(who);
178 }
179
180 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700181 public void setTag(Object tag) {
182 if (tag != null) {
183 LauncherModel.checkItemInfo((ItemInfo) tag);
184 }
185 super.setTag(tag);
186 }
187
188 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700189 public void setPressed(boolean pressed) {
190 super.setPressed(pressed);
191
192 if (!mIgnorePressedStateChange) {
193 updateIconState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800194 }
Sunny Goyal508da152014-08-14 10:53:27 -0700195 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800196
Winson Chungb745afb2015-03-02 11:51:23 -0800197 /** Returns the icon for this view. */
198 public Drawable getIcon() {
199 return mIcon;
200 }
201
202 /** Returns whether the layout is horizontal. */
203 public boolean isLayoutHorizontal() {
204 return mLayoutHorizontal;
205 }
206
Sunny Goyal508da152014-08-14 10:53:27 -0700207 private void updateIconState() {
Winson Chungb745afb2015-03-02 11:51:23 -0800208 if (mIcon instanceof FastBitmapDrawable) {
209 ((FastBitmapDrawable) mIcon).setPressed(isPressed() || mStayPressed);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800210 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800211 }
212
213 @Override
214 public boolean onTouchEvent(MotionEvent event) {
215 // Call the superclass onTouchEvent first, because sometimes it changes the state to
216 // isPressed() on an ACTION_UP
217 boolean result = super.onTouchEvent(event);
218
219 switch (event.getAction()) {
220 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700221 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800222 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
223 // to create it)
Winson Chung93f98ea2015-03-10 16:28:47 -0700224 if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) {
Sunny Goyal508da152014-08-14 10:53:27 -0700225 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800226 }
Winson Chung88f33452012-02-23 15:23:44 -0800227
228 mLongPressHelper.postCheckForLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800229 break;
230 case MotionEvent.ACTION_CANCEL:
231 case MotionEvent.ACTION_UP:
232 // If we've touched down and up on an item, and it's still not "pressed", then
233 // destroy the pressed outline
234 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700235 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800236 }
Winson Chung88f33452012-02-23 15:23:44 -0800237
238 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800239 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400240 case MotionEvent.ACTION_MOVE:
241 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
242 mLongPressHelper.cancelLongPress();
243 }
244 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800245 }
246 return result;
247 }
248
Michael Jurkaddd62e92011-02-16 17:49:14 -0800249 void setStayPressed(boolean stayPressed) {
250 mStayPressed = stayPressed;
251 if (!stayPressed) {
Sunny Goyal508da152014-08-14 10:53:27 -0700252 mPressedBackground = null;
Winson Chung93f98ea2015-03-10 16:28:47 -0700253 } else {
254 if (mPressedBackground == null) {
255 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
256 }
Michael Jurkaddd62e92011-02-16 17:49:14 -0800257 }
Sunny Goyal508da152014-08-14 10:53:27 -0700258
259 // Only show the shadow effect when persistent pressed state is set.
260 if (getParent() instanceof ShortcutAndWidgetContainer) {
261 CellLayout layout = (CellLayout) getParent().getParent();
262 layout.setPressedIcon(this, mPressedBackground, mOutlineHelper.shadowBitmapPadding);
263 }
264
265 updateIconState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800266 }
267
Sunny Goyal508da152014-08-14 10:53:27 -0700268 void clearPressedBackground() {
269 setPressed(false);
270 setStayPressed(false);
271 }
272
273 @Override
274 public boolean onKeyDown(int keyCode, KeyEvent event) {
275 if (super.onKeyDown(keyCode, event)) {
276 // Pre-create shadow so show immediately on click.
277 if (mPressedBackground == null) {
278 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700279 }
Sunny Goyal508da152014-08-14 10:53:27 -0700280 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700281 }
Sunny Goyal508da152014-08-14 10:53:27 -0700282 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800283 }
284
Sunny Goyal508da152014-08-14 10:53:27 -0700285 @Override
286 public boolean onKeyUp(int keyCode, KeyEvent event) {
287 // Unlike touch events, keypress event propagate pressed state change immediately,
288 // without waiting for onClickHandler to execute. Disable pressed state changes here
289 // to avoid flickering.
290 mIgnorePressedStateChange = true;
291 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700292
Sunny Goyal508da152014-08-14 10:53:27 -0700293 mPressedBackground = null;
294 mIgnorePressedStateChange = false;
295 updateIconState();
296 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800297 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800298
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800299 @Override
300 public void draw(Canvas canvas) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700301 if (!mCustomShadowsEnabled) {
Adam Cohen477828c2013-09-20 12:05:49 -0700302 super.draw(canvas);
303 return;
304 }
305
Michael Jurkabdb5c532011-02-01 15:05:06 -0800306 final Drawable background = mBackground;
307 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700308 final int scrollX = getScrollX();
309 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800310
Michael Jurkabdb5c532011-02-01 15:05:06 -0800311 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700312 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800313 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800314 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800315
316 if ((scrollX | scrollY) == 0) {
317 background.draw(canvas);
318 } else {
319 canvas.translate(scrollX, scrollY);
320 background.draw(canvas);
321 canvas.translate(-scrollX, -scrollY);
322 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800323 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800324
325 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800326 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800327 getPaint().clearShadowLayer();
328 super.draw(canvas);
329 return;
330 }
331
Michael Jurkabdb5c532011-02-01 15:05:06 -0800332 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800333 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800334 super.draw(canvas);
335 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700336 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
337 getScrollX() + getWidth(),
338 getScrollY() + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800339 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800340 super.draw(canvas);
341 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800342 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400343
344 @Override
345 protected void onAttachedToWindow() {
346 super.onAttachedToWindow();
Sunny Goyal95abbb32014-08-04 10:53:22 -0700347
Winson Chung656d11c2010-11-29 17:15:47 -0800348 if (mBackground != null) mBackground.setCallback(this);
Sunny Goyal95abbb32014-08-04 10:53:22 -0700349
Winson Chungb745afb2015-03-02 11:51:23 -0800350 if (mIcon instanceof PreloadIconDrawable) {
351 ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme());
Sunny Goyal95abbb32014-08-04 10:53:22 -0700352 }
Jason Monk02dd7ae2014-04-15 15:23:31 -0400353 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400354 }
355
356 @Override
357 protected void onDetachedFromWindow() {
358 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800359 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400360 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700361
Adam Cohen477828c2013-09-20 12:05:49 -0700362 @Override
363 public void setTextColor(int color) {
364 mTextColor = color;
365 super.setTextColor(color);
366 }
367
Adam Cohen96bb7982014-07-07 11:58:56 -0700368 @Override
369 public void setTextColor(ColorStateList colors) {
370 mTextColor = colors.getDefaultColor();
371 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700372 }
373
Winson Chung5f8afe62013-08-12 16:19:28 -0700374 public void setTextVisibility(boolean visible) {
375 Resources res = getResources();
376 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700377 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700378 } else {
Adam Cohen477828c2013-09-20 12:05:49 -0700379 super.setTextColor(res.getColor(android.R.color.transparent));
Winson Chung5f8afe62013-08-12 16:19:28 -0700380 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700381 }
382
Winson Chungaffd7b42010-08-20 15:11:56 -0700383 @Override
384 protected boolean onSetAlpha(int alpha) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800385 return true;
Winson Chungaffd7b42010-08-20 15:11:56 -0700386 }
Winson Chung88f33452012-02-23 15:23:44 -0800387
388 @Override
389 public void cancelLongPress() {
390 super.cancelLongPress();
391
392 mLongPressHelper.cancelLongPress();
393 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500394
Sunny Goyal34942622014-08-29 17:20:55 -0700395 public void applyState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700396 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400397 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700398 final boolean isPromise = info.isPromise();
399 final int progressLevel = isPromise ?
400 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
401 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700402
Winson Chungb745afb2015-03-02 11:51:23 -0800403 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700404 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800405 if (mIcon instanceof PreloadIconDrawable) {
406 preloadDrawable = (PreloadIconDrawable) mIcon;
Sunny Goyale755d462014-07-22 13:48:29 -0700407 } else {
Winson Chungb745afb2015-03-02 11:51:23 -0800408 preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme());
409 setIcon(preloadDrawable, mIconSize, -1);
Sunny Goyale755d462014-07-22 13:48:29 -0700410 }
411
412 preloadDrawable.setLevel(progressLevel);
Sunny Goyal34942622014-08-29 17:20:55 -0700413 if (promiseStateChanged) {
414 preloadDrawable.maybePerformFinishedAnimation();
Sunny Goyale755d462014-07-22 13:48:29 -0700415 }
Sunny Goyale755d462014-07-22 13:48:29 -0700416 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400417 }
418 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700419
420 private Theme getPreloaderTheme() {
421 Object tag = getTag();
422 int style = ((tag != null) && (tag instanceof ShortcutInfo) &&
423 (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder
424 : R.style.PreloadIcon;
425 Theme theme = sPreloaderThemes.get(style);
426 if (theme == null) {
427 theme = getResources().newTheme();
428 theme.applyStyle(style, true);
429 sPreloaderThemes.put(style, theme);
430 }
431 return theme;
432 }
Winson Chungb745afb2015-03-02 11:51:23 -0800433
434 /**
435 * Sets the icon for this view based on the layout direction.
436 */
437 private Drawable setIcon(Drawable icon, int iconSize, int drawablePadding) {
438 mIcon = icon;
439 if (iconSize != -1) {
440 mIcon.setBounds(0, 0, iconSize, iconSize);
441 }
442 if (mLayoutHorizontal) {
443 setCompoundDrawablesRelative(mIcon, null, null, null);
444 } else {
445 setCompoundDrawablesRelative(null, mIcon, null, null);
446 }
447 if (drawablePadding != -1) {
448 setCompoundDrawablePadding(drawablePadding);
449 }
450 return icon;
451 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800452}