The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | /* |
| 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 Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 18 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 19 | import android.content.Context; |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 20 | import android.content.res.ColorStateList; |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 21 | import android.content.res.Resources; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 22 | import android.content.res.Resources.Theme; |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 23 | import android.content.res.TypedArray; |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 24 | import android.graphics.Bitmap; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 25 | import android.graphics.Canvas; |
Michael Jurka | 137142e | 2011-01-05 20:57:04 -0800 | [diff] [blame] | 26 | import android.graphics.Region; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 27 | import android.graphics.drawable.Drawable; |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 28 | import android.util.AttributeSet; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 29 | import android.util.SparseArray; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 30 | import android.util.TypedValue; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 31 | import android.view.Gravity; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 32 | import android.view.KeyEvent; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 33 | import android.view.MotionEvent; |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 34 | import android.view.ViewConfiguration; |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 35 | import android.widget.TextView; |
Romain Guy | edcce09 | 2010-03-04 13:03:17 -0800 | [diff] [blame] | 36 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 37 | /** |
| 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 Jurka | 08ee770 | 2011-08-11 16:53:35 -0700 | [diff] [blame] | 42 | public class BubbleTextView extends TextView { |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 43 | |
Sameer Padala | 8fd7483 | 2014-09-08 16:00:29 -0700 | [diff] [blame] | 44 | private static SparseArray<Theme> sPreloaderThemes = new SparseArray<Theme>(2); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 45 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 46 | 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 Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 51 | static final float PADDING_V = 3.0f; |
| 52 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 53 | private Drawable mIcon; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 54 | 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 Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 62 | private Bitmap mPressedBackground; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 63 | |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 64 | private float mSlop; |
| 65 | |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame^] | 66 | private final boolean mDeferShadowGenerationOnTouch; |
Sunny Goyal | 15872da | 2014-07-08 15:43:54 -0700 | [diff] [blame] | 67 | private final boolean mCustomShadowsEnabled; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 68 | private final boolean mLayoutHorizontal; |
| 69 | private final int mIconSize; |
| 70 | private final int mIconPaddingSize; |
| 71 | private final int mTextSize; |
| 72 | private int mTextColor; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 73 | |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 74 | private boolean mStayPressed; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 75 | private boolean mIgnorePressedStateChange; |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 76 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 77 | public BubbleTextView(Context context) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 78 | this(context, null, 0); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | public BubbleTextView(Context context, AttributeSet attrs) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 82 | this(context, attrs, 0); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | public BubbleTextView(Context context, AttributeSet attrs, int defStyle) { |
| 86 | super(context, attrs, defStyle); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 87 | LauncherAppState app = LauncherAppState.getInstance(); |
| 88 | DeviceProfile grid = app.getDynamicGrid().getDeviceProfile(); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 89 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 90 | TypedArray a = context.obtainStyledAttributes(attrs, |
| 91 | R.styleable.BubbleTextView, defStyle, 0); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 92 | mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 93 | 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 Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame^] | 100 | mDeferShadowGenerationOnTouch = |
| 101 | a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 102 | a.recycle(); |
| 103 | |
Sunny Goyal | 15872da | 2014-07-08 15:43:54 -0700 | [diff] [blame] | 104 | 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 Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 111 | |
| 112 | // If we are laying out horizontal, then center the text vertically |
| 113 | if (mLayoutHorizontal) { |
| 114 | setGravity(Gravity.CENTER_VERTICAL); |
| 115 | } |
| 116 | |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 117 | 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 Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 125 | } |
| 126 | |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 127 | public void onFinishInflate() { |
| 128 | super.onFinishInflate(); |
| 129 | |
| 130 | // Ensure we are using the right text size |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 131 | setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 134 | public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache, |
| 135 | boolean setDefaultPadding) { |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 136 | applyFromShortcutInfo(info, iconCache, setDefaultPadding, false); |
| 137 | } |
| 138 | |
| 139 | public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache, |
| 140 | boolean setDefaultPadding, boolean promiseStateChanged) { |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 141 | Bitmap b = info.getIcon(iconCache); |
| 142 | |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 143 | FastBitmapDrawable iconDrawable = Utilities.createIconDrawable(b); |
Sunny Goyal | 1a745e8 | 2014-10-02 15:58:31 -0700 | [diff] [blame] | 144 | iconDrawable.setGhostModeEnabled(info.isDisabled != 0); |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 145 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 146 | setIcon(iconDrawable, mIconSize, setDefaultPadding ? mIconPaddingSize : -1); |
Kenny Guy | c2bd810 | 2014-06-30 12:30:31 +0100 | [diff] [blame] | 147 | if (info.contentDescription != null) { |
| 148 | setContentDescription(info.contentDescription); |
| 149 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 150 | setText(info.title); |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 151 | setTag(info); |
Sunny Goyal | 3484638 | 2014-07-09 00:09:28 -0700 | [diff] [blame] | 152 | |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 153 | if (promiseStateChanged || info.isPromise()) { |
| 154 | applyState(promiseStateChanged); |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 155 | } |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 156 | } |
| 157 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 158 | public void applyFromApplicationInfo(AppInfo info) { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 159 | setIcon(Utilities.createIconDrawable(info.iconBitmap), mIconSize, mIconPaddingSize); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 160 | setText(info.title); |
| 161 | if (info.contentDescription != null) { |
| 162 | setContentDescription(info.contentDescription); |
| 163 | } |
| 164 | setTag(info); |
| 165 | } |
| 166 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 167 | @Override |
| 168 | protected boolean setFrame(int left, int top, int right, int bottom) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 169 | if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 170 | 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 Jurka | 816474f | 2012-06-25 14:49:02 -0700 | [diff] [blame] | 181 | public void setTag(Object tag) { |
| 182 | if (tag != null) { |
| 183 | LauncherModel.checkItemInfo((ItemInfo) tag); |
| 184 | } |
| 185 | super.setTag(tag); |
| 186 | } |
| 187 | |
| 188 | @Override |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 189 | public void setPressed(boolean pressed) { |
| 190 | super.setPressed(pressed); |
| 191 | |
| 192 | if (!mIgnorePressedStateChange) { |
| 193 | updateIconState(); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 194 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 195 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 196 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 197 | /** 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 Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 207 | private void updateIconState() { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 208 | if (mIcon instanceof FastBitmapDrawable) { |
| 209 | ((FastBitmapDrawable) mIcon).setPressed(isPressed() || mStayPressed); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 210 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 211 | } |
| 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 Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 221 | // So that the pressed outline is visible immediately on setStayPressed(), |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 222 | // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time |
| 223 | // to create it) |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame^] | 224 | if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) { |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 225 | mPressedBackground = mOutlineHelper.createMediumDropShadow(this); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 226 | } |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 227 | |
| 228 | mLongPressHelper.postCheckForLongPress(); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 229 | 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 Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 235 | mPressedBackground = null; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 236 | } |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 237 | |
| 238 | mLongPressHelper.cancelLongPress(); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 239 | break; |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 240 | case MotionEvent.ACTION_MOVE: |
| 241 | if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) { |
| 242 | mLongPressHelper.cancelLongPress(); |
| 243 | } |
| 244 | break; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 245 | } |
| 246 | return result; |
| 247 | } |
| 248 | |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 249 | void setStayPressed(boolean stayPressed) { |
| 250 | mStayPressed = stayPressed; |
| 251 | if (!stayPressed) { |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 252 | mPressedBackground = null; |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame^] | 253 | } else { |
| 254 | if (mPressedBackground == null) { |
| 255 | mPressedBackground = mOutlineHelper.createMediumDropShadow(this); |
| 256 | } |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 257 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 258 | |
| 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 Dubroy | 3499d8c | 2011-03-10 17:17:23 -0800 | [diff] [blame] | 266 | } |
| 267 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 268 | 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 Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 279 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 280 | return true; |
Patrick Dubroy | d69e113 | 2011-03-15 10:29:01 -0700 | [diff] [blame] | 281 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 282 | return false; |
Patrick Dubroy | 3499d8c | 2011-03-10 17:17:23 -0800 | [diff] [blame] | 283 | } |
| 284 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 285 | @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 Chung | 1e9cbfe | 2011-09-30 16:52:26 -0700 | [diff] [blame] | 292 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 293 | mPressedBackground = null; |
| 294 | mIgnorePressedStateChange = false; |
| 295 | updateIconState(); |
| 296 | return result; |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 297 | } |
Patrick Dubroy | a017c03 | 2011-03-09 15:58:32 -0800 | [diff] [blame] | 298 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 299 | @Override |
| 300 | public void draw(Canvas canvas) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 301 | if (!mCustomShadowsEnabled) { |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 302 | super.draw(canvas); |
| 303 | return; |
| 304 | } |
| 305 | |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 306 | final Drawable background = mBackground; |
| 307 | if (background != null) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 308 | final int scrollX = getScrollX(); |
| 309 | final int scrollY = getScrollY(); |
Winson Chung | 8812703 | 2010-12-13 12:11:33 -0800 | [diff] [blame] | 310 | |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 311 | if (mBackgroundSizeChanged) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 312 | background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop()); |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 313 | mBackgroundSizeChanged = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 314 | } |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 315 | |
| 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 Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 323 | } |
Andrew Flynn | 0dca1ec | 2012-02-29 13:33:22 -0800 | [diff] [blame] | 324 | |
| 325 | // If text is transparent, don't draw any shadow |
Andrew Flynn | bc239a1 | 2012-03-06 11:39:49 -0800 | [diff] [blame] | 326 | if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) { |
Andrew Flynn | 0dca1ec | 2012-02-29 13:33:22 -0800 | [diff] [blame] | 327 | getPaint().clearShadowLayer(); |
| 328 | super.draw(canvas); |
| 329 | return; |
| 330 | } |
| 331 | |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 332 | // We enhance the shadow by drawing the shadow twice |
Michael Jurka | e7e3f6c | 2011-02-01 21:08:29 -0800 | [diff] [blame] | 333 | getPaint().setShadowLayer(SHADOW_LARGE_RADIUS, 0.0f, SHADOW_Y_OFFSET, SHADOW_LARGE_COLOUR); |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 334 | super.draw(canvas); |
| 335 | canvas.save(Canvas.CLIP_SAVE_FLAG); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 336 | canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(), |
| 337 | getScrollX() + getWidth(), |
| 338 | getScrollY() + getHeight(), Region.Op.INTERSECT); |
Michael Jurka | e7e3f6c | 2011-02-01 21:08:29 -0800 | [diff] [blame] | 339 | getPaint().setShadowLayer(SHADOW_SMALL_RADIUS, 0.0f, 0.0f, SHADOW_SMALL_COLOUR); |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 340 | super.draw(canvas); |
| 341 | canvas.restore(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 342 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 343 | |
| 344 | @Override |
| 345 | protected void onAttachedToWindow() { |
| 346 | super.onAttachedToWindow(); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 347 | |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 348 | if (mBackground != null) mBackground.setCallback(this); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 349 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 350 | if (mIcon instanceof PreloadIconDrawable) { |
| 351 | ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme()); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 352 | } |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 353 | mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | @Override |
| 357 | protected void onDetachedFromWindow() { |
| 358 | super.onDetachedFromWindow(); |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 359 | if (mBackground != null) mBackground.setCallback(null); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 360 | } |
Winson Chung | affd7b4 | 2010-08-20 15:11:56 -0700 | [diff] [blame] | 361 | |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 362 | @Override |
| 363 | public void setTextColor(int color) { |
| 364 | mTextColor = color; |
| 365 | super.setTextColor(color); |
| 366 | } |
| 367 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 368 | @Override |
| 369 | public void setTextColor(ColorStateList colors) { |
| 370 | mTextColor = colors.getDefaultColor(); |
| 371 | super.setTextColor(colors); |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 374 | public void setTextVisibility(boolean visible) { |
| 375 | Resources res = getResources(); |
| 376 | if (visible) { |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 377 | super.setTextColor(mTextColor); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 378 | } else { |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 379 | super.setTextColor(res.getColor(android.R.color.transparent)); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 380 | } |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Winson Chung | affd7b4 | 2010-08-20 15:11:56 -0700 | [diff] [blame] | 383 | @Override |
| 384 | protected boolean onSetAlpha(int alpha) { |
Winson Chung | e22a8e9 | 2010-11-12 13:40:58 -0800 | [diff] [blame] | 385 | return true; |
Winson Chung | affd7b4 | 2010-08-20 15:11:56 -0700 | [diff] [blame] | 386 | } |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 387 | |
| 388 | @Override |
| 389 | public void cancelLongPress() { |
| 390 | super.cancelLongPress(); |
| 391 | |
| 392 | mLongPressHelper.cancelLongPress(); |
| 393 | } |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 394 | |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 395 | public void applyState(boolean promiseStateChanged) { |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 396 | if (getTag() instanceof ShortcutInfo) { |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 397 | ShortcutInfo info = (ShortcutInfo) getTag(); |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 398 | final boolean isPromise = info.isPromise(); |
| 399 | final int progressLevel = isPromise ? |
| 400 | ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ? |
| 401 | info.getInstallProgress() : 0)) : 100; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 402 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 403 | if (mIcon != null) { |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 404 | final PreloadIconDrawable preloadDrawable; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 405 | if (mIcon instanceof PreloadIconDrawable) { |
| 406 | preloadDrawable = (PreloadIconDrawable) mIcon; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 407 | } else { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 408 | preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme()); |
| 409 | setIcon(preloadDrawable, mIconSize, -1); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | preloadDrawable.setLevel(progressLevel); |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 413 | if (promiseStateChanged) { |
| 414 | preloadDrawable.maybePerformFinishedAnimation(); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 415 | } |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 416 | } |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 417 | } |
| 418 | } |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 419 | |
| 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 Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 433 | |
| 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 Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 452 | } |