blob: 5ea84aeb226ab917247351158135caf31b6f6af6 [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
Sunny Goyal15872da2014-07-08 15:43:54 -070066 private final boolean mCustomShadowsEnabled;
Winson Chungb745afb2015-03-02 11:51:23 -080067 private final boolean mLayoutHorizontal;
68 private final int mIconSize;
69 private final int mIconPaddingSize;
70 private final int mTextSize;
71 private int mTextColor;
Winson Chung5f8afe62013-08-12 16:19:28 -070072
Michael Jurkaddd62e92011-02-16 17:49:14 -080073 private boolean mStayPressed;
Sunny Goyal508da152014-08-14 10:53:27 -070074 private boolean mIgnorePressedStateChange;
Chris Wrenaeff7ea2014-02-14 16:59:24 -050075
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076 public BubbleTextView(Context context) {
Adam Cohen96bb7982014-07-07 11:58:56 -070077 this(context, null, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078 }
79
80 public BubbleTextView(Context context, AttributeSet attrs) {
Adam Cohen96bb7982014-07-07 11:58:56 -070081 this(context, attrs, 0);
The Android Open Source Project31dd5032009-03-03 19:32:27 -080082 }
83
84 public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
85 super(context, attrs, defStyle);
Winson Chungb745afb2015-03-02 11:51:23 -080086 LauncherAppState app = LauncherAppState.getInstance();
87 DeviceProfile grid = app.getDynamicGrid().getDeviceProfile();
Adam Cohen96bb7982014-07-07 11:58:56 -070088
Adam Cohen96bb7982014-07-07 11:58:56 -070089 TypedArray a = context.obtainStyledAttributes(attrs,
90 R.styleable.BubbleTextView, defStyle, 0);
Adam Cohen96bb7982014-07-07 11:58:56 -070091 mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true);
Winson Chungb745afb2015-03-02 11:51:23 -080092 mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false);
93 mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride,
94 grid.allAppsIconSizePx);
95 mIconPaddingSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconPaddingOverride,
96 grid.iconDrawablePaddingPx);
97 mTextSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_textSizeOverride,
98 grid.allAppsIconTextSizePx);
Adam Cohen96bb7982014-07-07 11:58:56 -070099 a.recycle();
100
Sunny Goyal15872da2014-07-08 15:43:54 -0700101 if (mCustomShadowsEnabled) {
102 // Draw the background itself as the parent is drawn twice.
103 mBackground = getBackground();
104 setBackground(null);
105 } else {
106 mBackground = null;
107 }
Winson Chungb745afb2015-03-02 11:51:23 -0800108
109 // If we are laying out horizontal, then center the text vertically
110 if (mLayoutHorizontal) {
111 setGravity(Gravity.CENTER_VERTICAL);
112 }
113
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800114 mLongPressHelper = new CheckLongPressHelper(this);
115
116 mOutlineHelper = HolographicOutlineHelper.obtain(getContext());
117 if (mCustomShadowsEnabled) {
118 setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
119 }
120
121 setAccessibilityDelegate(LauncherAppState.getInstance().getAccessibilityDelegate());
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800122 }
123
Winson Chung5f8afe62013-08-12 16:19:28 -0700124 public void onFinishInflate() {
125 super.onFinishInflate();
126
127 // Ensure we are using the right text size
Winson Chungb745afb2015-03-02 11:51:23 -0800128 setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize);
Winson Chung5f8afe62013-08-12 16:19:28 -0700129 }
130
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700131 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
132 boolean setDefaultPadding) {
Sunny Goyal34942622014-08-29 17:20:55 -0700133 applyFromShortcutInfo(info, iconCache, setDefaultPadding, false);
134 }
135
136 public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache,
137 boolean setDefaultPadding, boolean promiseStateChanged) {
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800138 Bitmap b = info.getIcon(iconCache);
139
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700140 FastBitmapDrawable iconDrawable = Utilities.createIconDrawable(b);
Sunny Goyal1a745e82014-10-02 15:58:31 -0700141 iconDrawable.setGhostModeEnabled(info.isDisabled != 0);
Sunny Goyalc5c60ad2014-07-14 12:02:01 -0700142
Winson Chungb745afb2015-03-02 11:51:23 -0800143 setIcon(iconDrawable, mIconSize, setDefaultPadding ? mIconPaddingSize : -1);
Kenny Guyc2bd8102014-06-30 12:30:31 +0100144 if (info.contentDescription != null) {
145 setContentDescription(info.contentDescription);
146 }
Sunny Goyal508da152014-08-14 10:53:27 -0700147 setText(info.title);
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800148 setTag(info);
Sunny Goyal34846382014-07-09 00:09:28 -0700149
Sunny Goyal34942622014-08-29 17:20:55 -0700150 if (promiseStateChanged || info.isPromise()) {
151 applyState(promiseStateChanged);
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500152 }
Michael Jurka67b2f6c2010-11-17 12:33:46 -0800153 }
154
Sunny Goyal508da152014-08-14 10:53:27 -0700155 public void applyFromApplicationInfo(AppInfo info) {
Winson Chungb745afb2015-03-02 11:51:23 -0800156 setIcon(Utilities.createIconDrawable(info.iconBitmap), mIconSize, mIconPaddingSize);
Sunny Goyal508da152014-08-14 10:53:27 -0700157 setText(info.title);
158 if (info.contentDescription != null) {
159 setContentDescription(info.contentDescription);
160 }
161 setTag(info);
162 }
163
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800164 @Override
165 protected boolean setFrame(int left, int top, int right, int bottom) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700166 if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) {
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800167 mBackgroundSizeChanged = true;
168 }
169 return super.setFrame(left, top, right, bottom);
170 }
171
172 @Override
173 protected boolean verifyDrawable(Drawable who) {
174 return who == mBackground || super.verifyDrawable(who);
175 }
176
177 @Override
Michael Jurka816474f2012-06-25 14:49:02 -0700178 public void setTag(Object tag) {
179 if (tag != null) {
180 LauncherModel.checkItemInfo((ItemInfo) tag);
181 }
182 super.setTag(tag);
183 }
184
185 @Override
Sunny Goyal508da152014-08-14 10:53:27 -0700186 public void setPressed(boolean pressed) {
187 super.setPressed(pressed);
188
189 if (!mIgnorePressedStateChange) {
190 updateIconState();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800191 }
Sunny Goyal508da152014-08-14 10:53:27 -0700192 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800193
Winson Chungb745afb2015-03-02 11:51:23 -0800194 /** Returns the icon for this view. */
195 public Drawable getIcon() {
196 return mIcon;
197 }
198
199 /** Returns whether the layout is horizontal. */
200 public boolean isLayoutHorizontal() {
201 return mLayoutHorizontal;
202 }
203
Sunny Goyal508da152014-08-14 10:53:27 -0700204 private void updateIconState() {
Winson Chungb745afb2015-03-02 11:51:23 -0800205 if (mIcon instanceof FastBitmapDrawable) {
206 ((FastBitmapDrawable) mIcon).setPressed(isPressed() || mStayPressed);
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800207 }
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800208 }
209
210 @Override
211 public boolean onTouchEvent(MotionEvent event) {
212 // Call the superclass onTouchEvent first, because sometimes it changes the state to
213 // isPressed() on an ACTION_UP
214 boolean result = super.onTouchEvent(event);
215
216 switch (event.getAction()) {
217 case MotionEvent.ACTION_DOWN:
Sunny Goyal508da152014-08-14 10:53:27 -0700218 // So that the pressed outline is visible immediately on setStayPressed(),
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800219 // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time
220 // to create it)
Sunny Goyal508da152014-08-14 10:53:27 -0700221 if (mPressedBackground == null) {
222 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800223 }
Winson Chung88f33452012-02-23 15:23:44 -0800224
225 mLongPressHelper.postCheckForLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800226 break;
227 case MotionEvent.ACTION_CANCEL:
228 case MotionEvent.ACTION_UP:
229 // If we've touched down and up on an item, and it's still not "pressed", then
230 // destroy the pressed outline
231 if (!isPressed()) {
Sunny Goyal508da152014-08-14 10:53:27 -0700232 mPressedBackground = null;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800233 }
Winson Chung88f33452012-02-23 15:23:44 -0800234
235 mLongPressHelper.cancelLongPress();
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800236 break;
Jason Monk02dd7ae2014-04-15 15:23:31 -0400237 case MotionEvent.ACTION_MOVE:
238 if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) {
239 mLongPressHelper.cancelLongPress();
240 }
241 break;
Michael Jurka38b4f7c2010-12-14 16:46:39 -0800242 }
243 return result;
244 }
245
Michael Jurkaddd62e92011-02-16 17:49:14 -0800246 void setStayPressed(boolean stayPressed) {
247 mStayPressed = stayPressed;
248 if (!stayPressed) {
Sunny Goyal508da152014-08-14 10:53:27 -0700249 mPressedBackground = null;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800250 }
Sunny Goyal508da152014-08-14 10:53:27 -0700251
252 // Only show the shadow effect when persistent pressed state is set.
253 if (getParent() instanceof ShortcutAndWidgetContainer) {
254 CellLayout layout = (CellLayout) getParent().getParent();
255 layout.setPressedIcon(this, mPressedBackground, mOutlineHelper.shadowBitmapPadding);
256 }
257
258 updateIconState();
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800259 }
260
Sunny Goyal508da152014-08-14 10:53:27 -0700261 void clearPressedBackground() {
262 setPressed(false);
263 setStayPressed(false);
264 }
265
266 @Override
267 public boolean onKeyDown(int keyCode, KeyEvent event) {
268 if (super.onKeyDown(keyCode, event)) {
269 // Pre-create shadow so show immediately on click.
270 if (mPressedBackground == null) {
271 mPressedBackground = mOutlineHelper.createMediumDropShadow(this);
Adam Cohen76fc0852011-06-17 13:26:23 -0700272 }
Sunny Goyal508da152014-08-14 10:53:27 -0700273 return true;
Patrick Dubroyd69e1132011-03-15 10:29:01 -0700274 }
Sunny Goyal508da152014-08-14 10:53:27 -0700275 return false;
Patrick Dubroy3499d8c2011-03-10 17:17:23 -0800276 }
277
Sunny Goyal508da152014-08-14 10:53:27 -0700278 @Override
279 public boolean onKeyUp(int keyCode, KeyEvent event) {
280 // Unlike touch events, keypress event propagate pressed state change immediately,
281 // without waiting for onClickHandler to execute. Disable pressed state changes here
282 // to avoid flickering.
283 mIgnorePressedStateChange = true;
284 boolean result = super.onKeyUp(keyCode, event);
Winson Chung1e9cbfe2011-09-30 16:52:26 -0700285
Sunny Goyal508da152014-08-14 10:53:27 -0700286 mPressedBackground = null;
287 mIgnorePressedStateChange = false;
288 updateIconState();
289 return result;
Michael Jurkaddd62e92011-02-16 17:49:14 -0800290 }
Patrick Dubroya017c032011-03-09 15:58:32 -0800291
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800292 @Override
293 public void draw(Canvas canvas) {
Adam Cohen96bb7982014-07-07 11:58:56 -0700294 if (!mCustomShadowsEnabled) {
Adam Cohen477828c2013-09-20 12:05:49 -0700295 super.draw(canvas);
296 return;
297 }
298
Michael Jurkabdb5c532011-02-01 15:05:06 -0800299 final Drawable background = mBackground;
300 if (background != null) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700301 final int scrollX = getScrollX();
302 final int scrollY = getScrollY();
Winson Chung88127032010-12-13 12:11:33 -0800303
Michael Jurkabdb5c532011-02-01 15:05:06 -0800304 if (mBackgroundSizeChanged) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700305 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop());
Michael Jurkabdb5c532011-02-01 15:05:06 -0800306 mBackgroundSizeChanged = false;
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800307 }
Michael Jurkabdb5c532011-02-01 15:05:06 -0800308
309 if ((scrollX | scrollY) == 0) {
310 background.draw(canvas);
311 } else {
312 canvas.translate(scrollX, scrollY);
313 background.draw(canvas);
314 canvas.translate(-scrollX, -scrollY);
315 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800316 }
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800317
318 // If text is transparent, don't draw any shadow
Andrew Flynnbc239a12012-03-06 11:39:49 -0800319 if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) {
Andrew Flynn0dca1ec2012-02-29 13:33:22 -0800320 getPaint().clearShadowLayer();
321 super.draw(canvas);
322 return;
323 }
324
Michael Jurkabdb5c532011-02-01 15:05:06 -0800325 // We enhance the shadow by drawing the shadow twice
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800326 getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800327 super.draw(canvas);
328 canvas.save(Canvas.CLIP_SAVE_FLAG);
Michael Jurka8b805b12012-04-18 14:23:14 -0700329 canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(),
330 getScrollX() + getWidth(),
331 getScrollY() + getHeight(), Region.Op.INTERSECT);
Michael Jurkae7e3f6c2011-02-01 21:08:29 -0800332 getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR);
Michael Jurkabdb5c532011-02-01 15:05:06 -0800333 super.draw(canvas);
334 canvas.restore();
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800335 }
Joe Onorato9c1289c2009-08-17 11:03:03 -0400336
337 @Override
338 protected void onAttachedToWindow() {
339 super.onAttachedToWindow();
Sunny Goyal95abbb32014-08-04 10:53:22 -0700340
Winson Chung656d11c2010-11-29 17:15:47 -0800341 if (mBackground != null) mBackground.setCallback(this);
Sunny Goyal95abbb32014-08-04 10:53:22 -0700342
Winson Chungb745afb2015-03-02 11:51:23 -0800343 if (mIcon instanceof PreloadIconDrawable) {
344 ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme());
Sunny Goyal95abbb32014-08-04 10:53:22 -0700345 }
Jason Monk02dd7ae2014-04-15 15:23:31 -0400346 mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
Joe Onorato9c1289c2009-08-17 11:03:03 -0400347 }
348
349 @Override
350 protected void onDetachedFromWindow() {
351 super.onDetachedFromWindow();
Winson Chung656d11c2010-11-29 17:15:47 -0800352 if (mBackground != null) mBackground.setCallback(null);
Joe Onorato9c1289c2009-08-17 11:03:03 -0400353 }
Winson Chungaffd7b42010-08-20 15:11:56 -0700354
Adam Cohen477828c2013-09-20 12:05:49 -0700355 @Override
356 public void setTextColor(int color) {
357 mTextColor = color;
358 super.setTextColor(color);
359 }
360
Adam Cohen96bb7982014-07-07 11:58:56 -0700361 @Override
362 public void setTextColor(ColorStateList colors) {
363 mTextColor = colors.getDefaultColor();
364 super.setTextColor(colors);
Adam Cohen477828c2013-09-20 12:05:49 -0700365 }
366
Winson Chung5f8afe62013-08-12 16:19:28 -0700367 public void setTextVisibility(boolean visible) {
368 Resources res = getResources();
369 if (visible) {
Adam Cohen477828c2013-09-20 12:05:49 -0700370 super.setTextColor(mTextColor);
Winson Chung5f8afe62013-08-12 16:19:28 -0700371 } else {
Adam Cohen477828c2013-09-20 12:05:49 -0700372 super.setTextColor(res.getColor(android.R.color.transparent));
Winson Chung5f8afe62013-08-12 16:19:28 -0700373 }
Winson Chung5f8afe62013-08-12 16:19:28 -0700374 }
375
Winson Chungaffd7b42010-08-20 15:11:56 -0700376 @Override
377 protected boolean onSetAlpha(int alpha) {
Winson Chunge22a8e92010-11-12 13:40:58 -0800378 return true;
Winson Chungaffd7b42010-08-20 15:11:56 -0700379 }
Winson Chung88f33452012-02-23 15:23:44 -0800380
381 @Override
382 public void cancelLongPress() {
383 super.cancelLongPress();
384
385 mLongPressHelper.cancelLongPress();
386 }
Chris Wrenaeff7ea2014-02-14 16:59:24 -0500387
Sunny Goyal34942622014-08-29 17:20:55 -0700388 public void applyState(boolean promiseStateChanged) {
Sunny Goyale755d462014-07-22 13:48:29 -0700389 if (getTag() instanceof ShortcutInfo) {
Chris Wren40c5ed32014-06-24 18:24:23 -0400390 ShortcutInfo info = (ShortcutInfo) getTag();
Sunny Goyal34942622014-08-29 17:20:55 -0700391 final boolean isPromise = info.isPromise();
392 final int progressLevel = isPromise ?
393 ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ?
394 info.getInstallProgress() : 0)) : 100;
Sunny Goyale755d462014-07-22 13:48:29 -0700395
Winson Chungb745afb2015-03-02 11:51:23 -0800396 if (mIcon != null) {
Sunny Goyale755d462014-07-22 13:48:29 -0700397 final PreloadIconDrawable preloadDrawable;
Winson Chungb745afb2015-03-02 11:51:23 -0800398 if (mIcon instanceof PreloadIconDrawable) {
399 preloadDrawable = (PreloadIconDrawable) mIcon;
Sunny Goyale755d462014-07-22 13:48:29 -0700400 } else {
Winson Chungb745afb2015-03-02 11:51:23 -0800401 preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme());
402 setIcon(preloadDrawable, mIconSize, -1);
Sunny Goyale755d462014-07-22 13:48:29 -0700403 }
404
405 preloadDrawable.setLevel(progressLevel);
Sunny Goyal34942622014-08-29 17:20:55 -0700406 if (promiseStateChanged) {
407 preloadDrawable.maybePerformFinishedAnimation();
Sunny Goyale755d462014-07-22 13:48:29 -0700408 }
Sunny Goyale755d462014-07-22 13:48:29 -0700409 }
Chris Wren40c5ed32014-06-24 18:24:23 -0400410 }
411 }
Sunny Goyal95abbb32014-08-04 10:53:22 -0700412
413 private Theme getPreloaderTheme() {
414 Object tag = getTag();
415 int style = ((tag != null) && (tag instanceof ShortcutInfo) &&
416 (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder
417 : R.style.PreloadIcon;
418 Theme theme = sPreloaderThemes.get(style);
419 if (theme == null) {
420 theme = getResources().newTheme();
421 theme.applyStyle(style, true);
422 sPreloaderThemes.put(style, theme);
423 }
424 return theme;
425 }
Winson Chungb745afb2015-03-02 11:51:23 -0800426
427 /**
428 * Sets the icon for this view based on the layout direction.
429 */
430 private Drawable setIcon(Drawable icon, int iconSize, int drawablePadding) {
431 mIcon = icon;
432 if (iconSize != -1) {
433 mIcon.setBounds(0, 0, iconSize, iconSize);
434 }
435 if (mLayoutHorizontal) {
436 setCompoundDrawablesRelative(mIcon, null, null, null);
437 } else {
438 setCompoundDrawablesRelative(null, mIcon, null, null);
439 }
440 if (drawablePadding != -1) {
441 setCompoundDrawablePadding(drawablePadding);
442 }
443 return icon;
444 }
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800445}