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 | |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 19 | import android.annotation.TargetApi; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 20 | import android.content.Context; |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 21 | import android.content.res.ColorStateList; |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 22 | import android.content.res.Resources; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 23 | import android.content.res.Resources.Theme; |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 24 | import android.content.res.TypedArray; |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 25 | import android.graphics.Bitmap; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 26 | import android.graphics.Canvas; |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 27 | import android.graphics.Paint; |
Michael Jurka | 137142e | 2011-01-05 20:57:04 -0800 | [diff] [blame] | 28 | import android.graphics.Region; |
Winson | 5fbe074 | 2015-09-30 15:33:00 -0700 | [diff] [blame] | 29 | import android.graphics.drawable.ColorDrawable; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 30 | import android.graphics.drawable.Drawable; |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 31 | import android.os.Build; |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 32 | import android.util.AttributeSet; |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 33 | import android.util.SparseArray; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 34 | import android.util.TypedValue; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 35 | import android.view.KeyEvent; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 36 | import android.view.MotionEvent; |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 37 | import android.view.View; |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 38 | import android.view.ViewConfiguration; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 39 | import android.view.ViewDebug; |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 40 | import android.view.ViewParent; |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 41 | import android.widget.TextView; |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 42 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 43 | import com.android.launcher3.IconCache.IconLoadRequest; |
Sunny Goyal | 2611943 | 2016-02-18 22:09:23 +0000 | [diff] [blame] | 44 | import com.android.launcher3.folder.FolderIcon; |
Sunny Goyal | 10629b0 | 2016-09-01 12:50:11 -0700 | [diff] [blame^] | 45 | import com.android.launcher3.graphics.HolographicOutlineHelper; |
Hyunyoung Song | 2bd3d7d | 2015-05-21 13:04:53 -0700 | [diff] [blame] | 46 | import com.android.launcher3.model.PackageItemInfo; |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 47 | |
Sunny Goyal | c469aad | 2015-10-01 11:24:23 -0700 | [diff] [blame] | 48 | import java.text.NumberFormat; |
| 49 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 50 | /** |
| 51 | * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan |
| 52 | * because we want to make the bubble taller than the text and TextView's clip is |
| 53 | * too aggressive. |
| 54 | */ |
Winson Chung | b177744 | 2015-06-16 13:35:04 -0700 | [diff] [blame] | 55 | public class BubbleTextView extends TextView |
| 56 | implements BaseRecyclerViewFastScrollBar.FastScrollFocusableView { |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 57 | |
Sameer Padala | 8fd7483 | 2014-09-08 16:00:29 -0700 | [diff] [blame] | 58 | private static SparseArray<Theme> sPreloaderThemes = new SparseArray<Theme>(2); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 59 | |
Sunny Goyal | 8f8f398 | 2016-07-25 17:08:38 -0700 | [diff] [blame] | 60 | // Dimensions in DP |
| 61 | private static final float AMBIENT_SHADOW_RADIUS = 2.5f; |
| 62 | private static final float KEY_SHADOW_RADIUS = 1f; |
| 63 | private static final float KEY_SHADOW_OFFSET = 0.5f; |
| 64 | private static final int AMBIENT_SHADOW_COLOR = 0x33000000; |
| 65 | private static final int KEY_SHADOW_COLOR = 0x66000000; |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 66 | |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 67 | private static final int DISPLAY_WORKSPACE = 0; |
| 68 | private static final int DISPLAY_ALL_APPS = 1; |
| 69 | |
Sunny Goyal | 53d7ee4 | 2015-05-22 12:25:45 -0700 | [diff] [blame] | 70 | private final Launcher mLauncher; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 71 | private Drawable mIcon; |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 72 | private final boolean mCenterVertically; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 73 | private final Drawable mBackground; |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 74 | private OnLongClickListener mOnLongClickListener; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 75 | private final CheckLongPressHelper mLongPressHelper; |
| 76 | private final HolographicOutlineHelper mOutlineHelper; |
Mady Mellor | ef044dd | 2015-06-02 15:35:07 -0700 | [diff] [blame] | 77 | private final StylusEventHelper mStylusEventHelper; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 78 | |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 79 | private boolean mBackgroundSizeChanged; |
| 80 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 81 | private Bitmap mPressedBackground; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 82 | |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 83 | private float mSlop; |
| 84 | |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame] | 85 | private final boolean mDeferShadowGenerationOnTouch; |
Sunny Goyal | 15872da | 2014-07-08 15:43:54 -0700 | [diff] [blame] | 86 | private final boolean mCustomShadowsEnabled; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 87 | private final boolean mLayoutHorizontal; |
| 88 | private final int mIconSize; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 89 | @ViewDebug.ExportedProperty(category = "launcher") |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 90 | private int mTextColor; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 91 | |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 92 | @ViewDebug.ExportedProperty(category = "launcher") |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 93 | private boolean mStayPressed; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 94 | @ViewDebug.ExportedProperty(category = "launcher") |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 95 | private boolean mIgnorePressedStateChange; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 96 | @ViewDebug.ExportedProperty(category = "launcher") |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 97 | private boolean mDisableRelayout = false; |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 98 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 99 | private IconLoadRequest mIconLoadRequest; |
| 100 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 101 | public BubbleTextView(Context context) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 102 | this(context, null, 0); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | public BubbleTextView(Context context, AttributeSet attrs) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 106 | this(context, attrs, 0); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | public BubbleTextView(Context context, AttributeSet attrs, int defStyle) { |
| 110 | super(context, attrs, defStyle); |
Andrew Sapperstein | abef55a | 2016-06-19 12:49:00 -0700 | [diff] [blame] | 111 | mLauncher = Launcher.getLauncher(context); |
Sunny Goyal | 53d7ee4 | 2015-05-22 12:25:45 -0700 | [diff] [blame] | 112 | DeviceProfile grid = mLauncher.getDeviceProfile(); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 113 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 114 | TypedArray a = context.obtainStyledAttributes(attrs, |
| 115 | R.styleable.BubbleTextView, defStyle, 0); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 116 | mCustomShadowsEnabled = a.getBoolean(R.styleable.BubbleTextView_customShadows, true); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 117 | mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false); |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame] | 118 | mDeferShadowGenerationOnTouch = |
| 119 | a.getBoolean(R.styleable.BubbleTextView_deferShadowGeneration, false); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 120 | |
| 121 | int display = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE); |
| 122 | int defaultIconSize = grid.iconSizePx; |
| 123 | if (display == DISPLAY_WORKSPACE) { |
Winson Chung | 44d0aac | 2015-05-11 18:02:55 -0700 | [diff] [blame] | 124 | setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 125 | } else if (display == DISPLAY_ALL_APPS) { |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 126 | setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx); |
| 127 | setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 128 | defaultIconSize = grid.allAppsIconSizePx; |
| 129 | } |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 130 | mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 131 | |
| 132 | mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride, |
| 133 | defaultIconSize); |
| 134 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 135 | a.recycle(); |
| 136 | |
Sunny Goyal | 15872da | 2014-07-08 15:43:54 -0700 | [diff] [blame] | 137 | if (mCustomShadowsEnabled) { |
| 138 | // Draw the background itself as the parent is drawn twice. |
| 139 | mBackground = getBackground(); |
| 140 | setBackground(null); |
Sunny Goyal | 8f8f398 | 2016-07-25 17:08:38 -0700 | [diff] [blame] | 141 | |
| 142 | // Set shadow layer as the larger shadow to that the textView does not clip the shadow. |
| 143 | float density = getResources().getDisplayMetrics().density; |
| 144 | setShadowLayer(density * AMBIENT_SHADOW_RADIUS, 0, 0, AMBIENT_SHADOW_COLOR); |
Sunny Goyal | 15872da | 2014-07-08 15:43:54 -0700 | [diff] [blame] | 145 | } else { |
| 146 | mBackground = null; |
| 147 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 148 | |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 149 | mLongPressHelper = new CheckLongPressHelper(this); |
Mady Mellor | bb83520 | 2015-07-15 16:34:34 -0700 | [diff] [blame] | 150 | mStylusEventHelper = new StylusEventHelper(new SimpleOnStylusPressListener(this), this); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 151 | |
Sunny Goyal | 10629b0 | 2016-09-01 12:50:11 -0700 | [diff] [blame^] | 152 | mOutlineHelper = HolographicOutlineHelper.getInstance(getContext()); |
Sunny Goyal | ae50284 | 2016-06-17 08:43:56 -0700 | [diff] [blame] | 153 | setAccessibilityDelegate(mLauncher.getAccessibilityDelegate()); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 154 | } |
| 155 | |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 156 | public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache) { |
| 157 | applyFromShortcutInfo(info, iconCache, false); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Sunny Goyal | c5c60ad | 2014-07-14 12:02:01 -0700 | [diff] [blame] | 160 | public void applyFromShortcutInfo(ShortcutInfo info, IconCache iconCache, |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 161 | boolean promiseStateChanged) { |
Sunny Goyal | f420438 | 2016-07-13 10:46:07 -0700 | [diff] [blame] | 162 | applyIconAndLabel(info.getIcon(iconCache), info); |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 163 | setTag(info); |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 164 | if (promiseStateChanged || info.isPromise()) { |
| 165 | applyState(promiseStateChanged); |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 166 | } |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 169 | public void applyFromApplicationInfo(AppInfo info) { |
Sunny Goyal | f420438 | 2016-07-13 10:46:07 -0700 | [diff] [blame] | 170 | applyIconAndLabel(info.iconBitmap, info); |
| 171 | |
Winson Chung | 888b3a1 | 2015-03-13 11:14:16 -0700 | [diff] [blame] | 172 | // We don't need to check the info since it's not a ShortcutInfo |
| 173 | super.setTag(info); |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 174 | |
| 175 | // Verify high res immediately |
| 176 | verifyHighRes(); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 179 | public void applyFromPackageItemInfo(PackageItemInfo info) { |
Sunny Goyal | f420438 | 2016-07-13 10:46:07 -0700 | [diff] [blame] | 180 | applyIconAndLabel(info.iconBitmap, info); |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 181 | // We don't need to check the info since it's not a ShortcutInfo |
| 182 | super.setTag(info); |
| 183 | |
| 184 | // Verify high res immediately |
| 185 | verifyHighRes(); |
| 186 | } |
| 187 | |
Sunny Goyal | f420438 | 2016-07-13 10:46:07 -0700 | [diff] [blame] | 188 | private void applyIconAndLabel(Bitmap icon, ItemInfo info) { |
| 189 | FastBitmapDrawable iconDrawable = mLauncher.createIconDrawable(icon); |
| 190 | if (info.isDisabled()) { |
| 191 | iconDrawable.setState(FastBitmapDrawable.State.DISABLED); |
| 192 | } |
| 193 | setIcon(iconDrawable); |
| 194 | setText(info.title); |
| 195 | if (info.contentDescription != null) { |
| 196 | setContentDescription(info.isDisabled() |
| 197 | ? getContext().getString(R.string.disabled_app_label, info.contentDescription) |
| 198 | : info.contentDescription); |
| 199 | } |
| 200 | } |
| 201 | |
Winson Chung | 7501adf | 2015-06-02 11:24:28 -0700 | [diff] [blame] | 202 | /** |
Winson | 5fbe074 | 2015-09-30 15:33:00 -0700 | [diff] [blame] | 203 | * Used for measurement only, sets some dummy values on this view. |
| 204 | */ |
| 205 | public void applyDummyInfo() { |
| 206 | ColorDrawable d = new ColorDrawable(); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 207 | setIcon(mLauncher.resizeIconDrawable(d)); |
Winson | 5fbe074 | 2015-09-30 15:33:00 -0700 | [diff] [blame] | 208 | setText(""); |
| 209 | } |
| 210 | |
| 211 | /** |
Winson Chung | 7501adf | 2015-06-02 11:24:28 -0700 | [diff] [blame] | 212 | * Overrides the default long press timeout. |
| 213 | */ |
| 214 | public void setLongPressTimeout(int longPressTimeout) { |
| 215 | mLongPressHelper.setLongPressTimeout(longPressTimeout); |
| 216 | } |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 217 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 218 | @Override |
| 219 | protected boolean setFrame(int left, int top, int right, int bottom) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 220 | if (getLeft() != left || getRight() != right || getTop() != top || getBottom() != bottom) { |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 221 | mBackgroundSizeChanged = true; |
| 222 | } |
| 223 | return super.setFrame(left, top, right, bottom); |
| 224 | } |
| 225 | |
| 226 | @Override |
| 227 | protected boolean verifyDrawable(Drawable who) { |
| 228 | return who == mBackground || super.verifyDrawable(who); |
| 229 | } |
| 230 | |
| 231 | @Override |
Michael Jurka | 816474f | 2012-06-25 14:49:02 -0700 | [diff] [blame] | 232 | public void setTag(Object tag) { |
| 233 | if (tag != null) { |
| 234 | LauncherModel.checkItemInfo((ItemInfo) tag); |
| 235 | } |
| 236 | super.setTag(tag); |
| 237 | } |
| 238 | |
| 239 | @Override |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 240 | public void setPressed(boolean pressed) { |
| 241 | super.setPressed(pressed); |
| 242 | |
| 243 | if (!mIgnorePressedStateChange) { |
| 244 | updateIconState(); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 245 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 246 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 247 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 248 | /** Returns the icon for this view. */ |
| 249 | public Drawable getIcon() { |
| 250 | return mIcon; |
| 251 | } |
| 252 | |
| 253 | /** Returns whether the layout is horizontal. */ |
| 254 | public boolean isLayoutHorizontal() { |
| 255 | return mLayoutHorizontal; |
| 256 | } |
| 257 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 258 | private void updateIconState() { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 259 | if (mIcon instanceof FastBitmapDrawable) { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 260 | FastBitmapDrawable d = (FastBitmapDrawable) mIcon; |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 261 | if (getTag() instanceof ItemInfo |
| 262 | && ((ItemInfo) getTag()).isDisabled()) { |
Sunny Goyal | cd5b7f9 | 2015-10-20 15:17:00 -0700 | [diff] [blame] | 263 | d.animateState(FastBitmapDrawable.State.DISABLED); |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 264 | } else if (isPressed() || mStayPressed) { |
| 265 | d.animateState(FastBitmapDrawable.State.PRESSED); |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 266 | } else { |
| 267 | d.animateState(FastBitmapDrawable.State.NORMAL); |
| 268 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 269 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | @Override |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 273 | public void setOnLongClickListener(OnLongClickListener l) { |
| 274 | super.setOnLongClickListener(l); |
| 275 | mOnLongClickListener = l; |
| 276 | } |
| 277 | |
| 278 | public OnLongClickListener getOnLongClickListener() { |
| 279 | return mOnLongClickListener; |
| 280 | } |
| 281 | |
| 282 | @Override |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 283 | public boolean onTouchEvent(MotionEvent event) { |
| 284 | // Call the superclass onTouchEvent first, because sometimes it changes the state to |
| 285 | // isPressed() on an ACTION_UP |
| 286 | boolean result = super.onTouchEvent(event); |
| 287 | |
Mady Mellor | ef044dd | 2015-06-02 15:35:07 -0700 | [diff] [blame] | 288 | // Check for a stylus button press, if it occurs cancel any long press checks. |
Mady Mellor | bb83520 | 2015-07-15 16:34:34 -0700 | [diff] [blame] | 289 | if (mStylusEventHelper.onMotionEvent(event)) { |
Mady Mellor | ef044dd | 2015-06-02 15:35:07 -0700 | [diff] [blame] | 290 | mLongPressHelper.cancelLongPress(); |
| 291 | result = true; |
| 292 | } |
| 293 | |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 294 | switch (event.getAction()) { |
| 295 | case MotionEvent.ACTION_DOWN: |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 296 | // So that the pressed outline is visible immediately on setStayPressed(), |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 297 | // we pre-create it on ACTION_DOWN (it takes a small but perceptible amount of time |
| 298 | // to create it) |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame] | 299 | if (!mDeferShadowGenerationOnTouch && mPressedBackground == null) { |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 300 | mPressedBackground = mOutlineHelper.createMediumDropShadow(this); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 301 | } |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 302 | |
Mady Mellor | ef044dd | 2015-06-02 15:35:07 -0700 | [diff] [blame] | 303 | // If we're in a stylus button press, don't check for long press. |
| 304 | if (!mStylusEventHelper.inStylusButtonPressed()) { |
| 305 | mLongPressHelper.postCheckForLongPress(); |
| 306 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 307 | break; |
| 308 | case MotionEvent.ACTION_CANCEL: |
| 309 | case MotionEvent.ACTION_UP: |
| 310 | // If we've touched down and up on an item, and it's still not "pressed", then |
| 311 | // destroy the pressed outline |
| 312 | if (!isPressed()) { |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 313 | mPressedBackground = null; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 314 | } |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 315 | |
| 316 | mLongPressHelper.cancelLongPress(); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 317 | break; |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 318 | case MotionEvent.ACTION_MOVE: |
| 319 | if (!Utilities.pointInView(this, event.getX(), event.getY(), mSlop)) { |
| 320 | mLongPressHelper.cancelLongPress(); |
| 321 | } |
| 322 | break; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 323 | } |
| 324 | return result; |
| 325 | } |
| 326 | |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 327 | void setStayPressed(boolean stayPressed) { |
| 328 | mStayPressed = stayPressed; |
| 329 | if (!stayPressed) { |
Sunny Goyal | 10629b0 | 2016-09-01 12:50:11 -0700 | [diff] [blame^] | 330 | HolographicOutlineHelper.getInstance(getContext()).recycleShadowBitmap(mPressedBackground); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 331 | mPressedBackground = null; |
Winson Chung | 93f98ea | 2015-03-10 16:28:47 -0700 | [diff] [blame] | 332 | } else { |
| 333 | if (mPressedBackground == null) { |
| 334 | mPressedBackground = mOutlineHelper.createMediumDropShadow(this); |
| 335 | } |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 336 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 337 | |
| 338 | // Only show the shadow effect when persistent pressed state is set. |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 339 | ViewParent parent = getParent(); |
| 340 | if (parent != null && parent.getParent() instanceof BubbleTextShadowHandler) { |
| 341 | ((BubbleTextShadowHandler) parent.getParent()).setPressedIcon( |
| 342 | this, mPressedBackground); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | updateIconState(); |
Patrick Dubroy | 3499d8c | 2011-03-10 17:17:23 -0800 | [diff] [blame] | 346 | } |
| 347 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 348 | void clearPressedBackground() { |
| 349 | setPressed(false); |
| 350 | setStayPressed(false); |
| 351 | } |
| 352 | |
| 353 | @Override |
| 354 | public boolean onKeyDown(int keyCode, KeyEvent event) { |
| 355 | if (super.onKeyDown(keyCode, event)) { |
| 356 | // Pre-create shadow so show immediately on click. |
| 357 | if (mPressedBackground == null) { |
| 358 | mPressedBackground = mOutlineHelper.createMediumDropShadow(this); |
Adam Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 359 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 360 | return true; |
Patrick Dubroy | d69e113 | 2011-03-15 10:29:01 -0700 | [diff] [blame] | 361 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 362 | return false; |
Patrick Dubroy | 3499d8c | 2011-03-10 17:17:23 -0800 | [diff] [blame] | 363 | } |
| 364 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 365 | @Override |
| 366 | public boolean onKeyUp(int keyCode, KeyEvent event) { |
| 367 | // Unlike touch events, keypress event propagate pressed state change immediately, |
| 368 | // without waiting for onClickHandler to execute. Disable pressed state changes here |
| 369 | // to avoid flickering. |
| 370 | mIgnorePressedStateChange = true; |
| 371 | boolean result = super.onKeyUp(keyCode, event); |
Winson Chung | 1e9cbfe | 2011-09-30 16:52:26 -0700 | [diff] [blame] | 372 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 373 | mPressedBackground = null; |
| 374 | mIgnorePressedStateChange = false; |
| 375 | updateIconState(); |
| 376 | return result; |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 377 | } |
Patrick Dubroy | a017c03 | 2011-03-09 15:58:32 -0800 | [diff] [blame] | 378 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 379 | @Override |
| 380 | public void draw(Canvas canvas) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 381 | if (!mCustomShadowsEnabled) { |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 382 | super.draw(canvas); |
| 383 | return; |
| 384 | } |
| 385 | |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 386 | final Drawable background = mBackground; |
| 387 | if (background != null) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 388 | final int scrollX = getScrollX(); |
| 389 | final int scrollY = getScrollY(); |
Winson Chung | 8812703 | 2010-12-13 12:11:33 -0800 | [diff] [blame] | 390 | |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 391 | if (mBackgroundSizeChanged) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 392 | background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop()); |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 393 | mBackgroundSizeChanged = false; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 394 | } |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 395 | |
| 396 | if ((scrollX | scrollY) == 0) { |
| 397 | background.draw(canvas); |
| 398 | } else { |
| 399 | canvas.translate(scrollX, scrollY); |
| 400 | background.draw(canvas); |
| 401 | canvas.translate(-scrollX, -scrollY); |
| 402 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 403 | } |
Andrew Flynn | 0dca1ec | 2012-02-29 13:33:22 -0800 | [diff] [blame] | 404 | |
| 405 | // If text is transparent, don't draw any shadow |
Andrew Flynn | bc239a1 | 2012-03-06 11:39:49 -0800 | [diff] [blame] | 406 | if (getCurrentTextColor() == getResources().getColor(android.R.color.transparent)) { |
Andrew Flynn | 0dca1ec | 2012-02-29 13:33:22 -0800 | [diff] [blame] | 407 | getPaint().clearShadowLayer(); |
| 408 | super.draw(canvas); |
| 409 | return; |
| 410 | } |
| 411 | |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 412 | // We enhance the shadow by drawing the shadow twice |
Sunny Goyal | 8f8f398 | 2016-07-25 17:08:38 -0700 | [diff] [blame] | 413 | float density = getResources().getDisplayMetrics().density; |
| 414 | getPaint().setShadowLayer(density * AMBIENT_SHADOW_RADIUS, 0, 0, AMBIENT_SHADOW_COLOR); |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 415 | super.draw(canvas); |
| 416 | canvas.save(Canvas.CLIP_SAVE_FLAG); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 417 | canvas.clipRect(getScrollX(), getScrollY() + getExtendedPaddingTop(), |
| 418 | getScrollX() + getWidth(), |
| 419 | getScrollY() + getHeight(), Region.Op.INTERSECT); |
Sunny Goyal | 8f8f398 | 2016-07-25 17:08:38 -0700 | [diff] [blame] | 420 | getPaint().setShadowLayer( |
| 421 | density * KEY_SHADOW_RADIUS, 0.0f, density * KEY_SHADOW_OFFSET, KEY_SHADOW_COLOR); |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 422 | super.draw(canvas); |
| 423 | canvas.restore(); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 424 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 425 | |
| 426 | @Override |
| 427 | protected void onAttachedToWindow() { |
| 428 | super.onAttachedToWindow(); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 429 | |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 430 | if (mBackground != null) mBackground.setCallback(this); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 431 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 432 | if (mIcon instanceof PreloadIconDrawable) { |
| 433 | ((PreloadIconDrawable) mIcon).applyPreloaderTheme(getPreloaderTheme()); |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 434 | } |
Jason Monk | 02dd7ae | 2014-04-15 15:23:31 -0400 | [diff] [blame] | 435 | mSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop(); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | @Override |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 439 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
| 440 | if (mCenterVertically) { |
| 441 | Paint.FontMetrics fm = getPaint().getFontMetrics(); |
| 442 | int cellHeightPx = mIconSize + getCompoundDrawablePadding() + |
| 443 | (int) Math.ceil(fm.bottom - fm.top); |
| 444 | int height = MeasureSpec.getSize(heightMeasureSpec); |
| 445 | setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(), |
| 446 | getPaddingBottom()); |
| 447 | } |
| 448 | super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
| 449 | } |
| 450 | |
| 451 | @Override |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 452 | protected void onDetachedFromWindow() { |
| 453 | super.onDetachedFromWindow(); |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 454 | if (mBackground != null) mBackground.setCallback(null); |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 455 | } |
Winson Chung | affd7b4 | 2010-08-20 15:11:56 -0700 | [diff] [blame] | 456 | |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 457 | @Override |
| 458 | public void setTextColor(int color) { |
| 459 | mTextColor = color; |
| 460 | super.setTextColor(color); |
| 461 | } |
| 462 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 463 | @Override |
| 464 | public void setTextColor(ColorStateList colors) { |
| 465 | mTextColor = colors.getDefaultColor(); |
| 466 | super.setTextColor(colors); |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 469 | public void setTextVisibility(boolean visible) { |
| 470 | Resources res = getResources(); |
| 471 | if (visible) { |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 472 | super.setTextColor(mTextColor); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 473 | } else { |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 474 | super.setTextColor(res.getColor(android.R.color.transparent)); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 475 | } |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 476 | } |
| 477 | |
Winson Chung | affd7b4 | 2010-08-20 15:11:56 -0700 | [diff] [blame] | 478 | @Override |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 479 | public void cancelLongPress() { |
| 480 | super.cancelLongPress(); |
| 481 | |
| 482 | mLongPressHelper.cancelLongPress(); |
| 483 | } |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 484 | |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 485 | public void applyState(boolean promiseStateChanged) { |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 486 | if (getTag() instanceof ShortcutInfo) { |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 487 | ShortcutInfo info = (ShortcutInfo) getTag(); |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 488 | final boolean isPromise = info.isPromise(); |
| 489 | final int progressLevel = isPromise ? |
| 490 | ((info.hasStatusFlag(ShortcutInfo.FLAG_INSTALL_SESSION_ACTIVE) ? |
| 491 | info.getInstallProgress() : 0)) : 100; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 492 | |
Sunny Goyal | c469aad | 2015-10-01 11:24:23 -0700 | [diff] [blame] | 493 | setContentDescription(progressLevel > 0 ? |
| 494 | getContext().getString(R.string.app_downloading_title, info.title, |
| 495 | NumberFormat.getPercentInstance().format(progressLevel * 0.01)) : |
| 496 | getContext().getString(R.string.app_waiting_download_title, info.title)); |
| 497 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 498 | if (mIcon != null) { |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 499 | final PreloadIconDrawable preloadDrawable; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 500 | if (mIcon instanceof PreloadIconDrawable) { |
| 501 | preloadDrawable = (PreloadIconDrawable) mIcon; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 502 | } else { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 503 | preloadDrawable = new PreloadIconDrawable(mIcon, getPreloaderTheme()); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 504 | setIcon(preloadDrawable); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | preloadDrawable.setLevel(progressLevel); |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 508 | if (promiseStateChanged) { |
| 509 | preloadDrawable.maybePerformFinishedAnimation(); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 510 | } |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 511 | } |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 512 | } |
| 513 | } |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 514 | |
| 515 | private Theme getPreloaderTheme() { |
| 516 | Object tag = getTag(); |
| 517 | int style = ((tag != null) && (tag instanceof ShortcutInfo) && |
| 518 | (((ShortcutInfo) tag).container >= 0)) ? R.style.PreloadIcon_Folder |
| 519 | : R.style.PreloadIcon; |
| 520 | Theme theme = sPreloaderThemes.get(style); |
| 521 | if (theme == null) { |
| 522 | theme = getResources().newTheme(); |
| 523 | theme.applyStyle(style, true); |
| 524 | sPreloaderThemes.put(style, theme); |
| 525 | } |
| 526 | return theme; |
| 527 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 528 | |
| 529 | /** |
| 530 | * Sets the icon for this view based on the layout direction. |
| 531 | */ |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 532 | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) |
Tony Wickham | 377ed3f | 2016-07-20 15:21:04 -0700 | [diff] [blame] | 533 | private void setIcon(Drawable icon) { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 534 | mIcon = icon; |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 535 | if (mIconSize != -1) { |
| 536 | mIcon.setBounds(0, 0, mIconSize, mIconSize); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 537 | } |
Tony Wickham | 377ed3f | 2016-07-20 15:21:04 -0700 | [diff] [blame] | 538 | applyCompoundDrawables(mIcon); |
| 539 | } |
| 540 | |
| 541 | protected void applyCompoundDrawables(Drawable icon) { |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 542 | if (mLayoutHorizontal) { |
Sunny Goyal | 9fc953b | 2015-08-17 12:24:25 -0700 | [diff] [blame] | 543 | if (Utilities.ATLEAST_JB_MR1) { |
Tony Wickham | 377ed3f | 2016-07-20 15:21:04 -0700 | [diff] [blame] | 544 | setCompoundDrawablesRelative(icon, null, null, null); |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 545 | } else { |
Tony Wickham | 377ed3f | 2016-07-20 15:21:04 -0700 | [diff] [blame] | 546 | setCompoundDrawables(icon, null, null, null); |
Sunny Goyal | 7066003 | 2015-05-14 00:07:08 -0700 | [diff] [blame] | 547 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 548 | } else { |
Tony Wickham | 377ed3f | 2016-07-20 15:21:04 -0700 | [diff] [blame] | 549 | setCompoundDrawables(null, icon, null, null); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 550 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 551 | } |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 552 | |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 553 | @Override |
| 554 | public void requestLayout() { |
| 555 | if (!mDisableRelayout) { |
| 556 | super.requestLayout(); |
| 557 | } |
| 558 | } |
| 559 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 560 | /** |
| 561 | * Applies the item info if it is same as what the view is pointing to currently. |
| 562 | */ |
| 563 | public void reapplyItemInfo(final ItemInfo info) { |
| 564 | if (getTag() == info) { |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 565 | FastBitmapDrawable.State prevState = FastBitmapDrawable.State.NORMAL; |
| 566 | if (mIcon instanceof FastBitmapDrawable) { |
| 567 | prevState = ((FastBitmapDrawable) mIcon).getCurrentState(); |
| 568 | } |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 569 | mIconLoadRequest = null; |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 570 | mDisableRelayout = true; |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 571 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 572 | if (info instanceof AppInfo) { |
| 573 | applyFromApplicationInfo((AppInfo) info); |
| 574 | } else if (info instanceof ShortcutInfo) { |
| 575 | applyFromShortcutInfo((ShortcutInfo) info, |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 576 | LauncherAppState.getInstance().getIconCache()); |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 577 | if ((info.rank < FolderIcon.NUM_ITEMS_IN_PREVIEW) && (info.container >= 0)) { |
| 578 | View folderIcon = |
| 579 | mLauncher.getWorkspace().getHomescreenIconByItemId(info.container); |
| 580 | if (folderIcon != null) { |
| 581 | folderIcon.invalidate(); |
| 582 | } |
| 583 | } |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 584 | } else if (info instanceof PackageItemInfo) { |
| 585 | applyFromPackageItemInfo((PackageItemInfo) info); |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 586 | } |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 587 | |
| 588 | // If we are reapplying over an old icon, then we should update the new icon to the same |
| 589 | // state as the old icon |
| 590 | if (mIcon instanceof FastBitmapDrawable) { |
| 591 | ((FastBitmapDrawable) mIcon).setState(prevState); |
| 592 | } |
| 593 | |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 594 | mDisableRelayout = false; |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 595 | } |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | * Verifies that the current icon is high-res otherwise posts a request to load the icon. |
| 600 | */ |
| 601 | public void verifyHighRes() { |
| 602 | if (mIconLoadRequest != null) { |
| 603 | mIconLoadRequest.cancel(); |
| 604 | mIconLoadRequest = null; |
| 605 | } |
| 606 | if (getTag() instanceof AppInfo) { |
| 607 | AppInfo info = (AppInfo) getTag(); |
| 608 | if (info.usingLowResIcon) { |
| 609 | mIconLoadRequest = LauncherAppState.getInstance().getIconCache() |
| 610 | .updateIconInBackground(BubbleTextView.this, info); |
| 611 | } |
| 612 | } else if (getTag() instanceof ShortcutInfo) { |
| 613 | ShortcutInfo info = (ShortcutInfo) getTag(); |
| 614 | if (info.usingLowResIcon) { |
| 615 | mIconLoadRequest = LauncherAppState.getInstance().getIconCache() |
| 616 | .updateIconInBackground(BubbleTextView.this, info); |
| 617 | } |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 618 | } else if (getTag() instanceof PackageItemInfo) { |
| 619 | PackageItemInfo info = (PackageItemInfo) getTag(); |
| 620 | if (info.usingLowResIcon) { |
| 621 | mIconLoadRequest = LauncherAppState.getInstance().getIconCache() |
| 622 | .updateIconInBackground(BubbleTextView.this, info); |
| 623 | } |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 624 | } |
| 625 | } |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 626 | |
Winson Chung | b177744 | 2015-06-16 13:35:04 -0700 | [diff] [blame] | 627 | @Override |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 628 | public void setFastScrollFocusState(final FastBitmapDrawable.State focusState, boolean animated) { |
| 629 | // We can only set the fast scroll focus state on a FastBitmapDrawable |
| 630 | if (!(mIcon instanceof FastBitmapDrawable)) { |
Winson Chung | b177744 | 2015-06-16 13:35:04 -0700 | [diff] [blame] | 631 | return; |
| 632 | } |
| 633 | |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 634 | FastBitmapDrawable d = (FastBitmapDrawable) mIcon; |
| 635 | if (animated) { |
| 636 | FastBitmapDrawable.State prevState = d.getCurrentState(); |
| 637 | if (d.animateState(focusState)) { |
| 638 | // If the state was updated, then update the view accordingly |
| 639 | animate().scaleX(focusState.viewScale) |
| 640 | .scaleY(focusState.viewScale) |
| 641 | .setStartDelay(getStartDelayForStateChange(prevState, focusState)) |
| 642 | .setDuration(d.getDurationForStateChange(prevState, focusState)) |
| 643 | .start(); |
| 644 | } |
| 645 | } else { |
| 646 | if (d.setState(focusState)) { |
| 647 | // If the state was updated, then update the view accordingly |
| 648 | animate().cancel(); |
| 649 | setScaleX(focusState.viewScale); |
| 650 | setScaleY(focusState.viewScale); |
Winson Chung | b177744 | 2015-06-16 13:35:04 -0700 | [diff] [blame] | 651 | } |
| 652 | } |
| 653 | } |
| 654 | |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 655 | /** |
Sunny Goyal | 3ffa64d | 2016-07-25 13:54:32 -0700 | [diff] [blame] | 656 | * Returns true if the view can show custom shortcuts. |
| 657 | */ |
| 658 | public boolean hasDeepShortcuts() { |
| 659 | return !mLauncher.getShortcutIdsForItem((ItemInfo) getTag()).isEmpty(); |
| 660 | } |
| 661 | |
| 662 | /** |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 663 | * Returns the start delay when animating between certain {@link FastBitmapDrawable} states. |
| 664 | */ |
| 665 | private static int getStartDelayForStateChange(final FastBitmapDrawable.State fromState, |
| 666 | final FastBitmapDrawable.State toState) { |
| 667 | switch (toState) { |
| 668 | case NORMAL: |
| 669 | switch (fromState) { |
| 670 | case FAST_SCROLL_HIGHLIGHTED: |
| 671 | return FastBitmapDrawable.FAST_SCROLL_INACTIVE_DURATION / 4; |
| 672 | } |
| 673 | } |
| 674 | return 0; |
| 675 | } |
| 676 | |
| 677 | /** |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 678 | * Interface to be implemented by the grand parent to allow click shadow effect. |
| 679 | */ |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 680 | public interface BubbleTextShadowHandler { |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 681 | void setPressedIcon(BubbleTextView icon, Bitmap background); |
| 682 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 683 | } |