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 | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 19 | import static com.android.launcher3.FastBitmapDrawable.newIcon; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 20 | import static com.android.launcher3.graphics.IconShape.getShape; |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 21 | import static com.android.launcher3.graphics.PreloadIconDrawable.newPendingIcon; |
Sunny Goyal | 066ace1 | 2018-11-05 11:08:31 -0800 | [diff] [blame] | 22 | import static com.android.launcher3.icons.GraphicsUtils.setColorAlphaBound; |
| 23 | |
Tony | 4043b05 | 2018-08-17 13:47:39 -0700 | [diff] [blame] | 24 | import android.animation.Animator; |
| 25 | import android.animation.AnimatorListenerAdapter; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 26 | import android.animation.ObjectAnimator; |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 27 | import android.animation.ValueAnimator; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 28 | import android.content.Context; |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 29 | import android.content.res.ColorStateList; |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 30 | import android.content.res.TypedArray; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 31 | import android.graphics.BlurMaskFilter; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 32 | import android.graphics.Canvas; |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 33 | import android.graphics.Color; |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 34 | import android.graphics.Paint; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 35 | import android.graphics.Path; |
Adam Cohen | d916206 | 2020-03-24 16:35:35 -0700 | [diff] [blame] | 36 | import android.graphics.PointF; |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 37 | import android.graphics.PorterDuff.Mode; |
| 38 | import android.graphics.PorterDuffColorFilter; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 39 | import android.graphics.Rect; |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 40 | import android.graphics.drawable.ColorDrawable; |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 41 | import android.graphics.drawable.Drawable; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 42 | import android.os.Process; |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 43 | import android.text.TextUtils.TruncateAt; |
Winson Chung | 656d11c | 2010-11-29 17:15:47 -0800 | [diff] [blame] | 44 | import android.util.AttributeSet; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 45 | import android.util.Property; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 46 | import android.util.TypedValue; |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 47 | import android.view.KeyEvent; |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 48 | import android.view.MotionEvent; |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 49 | import android.view.View; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 50 | import android.view.ViewDebug; |
Michael Jurka | bdb5c53 | 2011-02-01 15:05:06 -0800 | [diff] [blame] | 51 | import android.widget.TextView; |
Sunny Goyal | 317698b | 2015-07-29 11:45:41 -0700 | [diff] [blame] | 52 | |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 53 | import androidx.core.graphics.ColorUtils; |
| 54 | |
Sunny Goyal | 3dce5f3 | 2017-10-05 11:40:05 -0700 | [diff] [blame] | 55 | import com.android.launcher3.Launcher.OnResumeCallback; |
Adam Cohen | 29794c5 | 2019-06-21 12:50:30 -0700 | [diff] [blame] | 56 | import com.android.launcher3.accessibility.LauncherAccessibilityDelegate; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 57 | import com.android.launcher3.allapps.AllAppsSectionDecorator; |
| 58 | import com.android.launcher3.config.FeatureFlags; |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 59 | import com.android.launcher3.dot.DotInfo; |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 60 | import com.android.launcher3.dragndrop.DraggableView; |
Tony | 7308cde | 2017-06-27 22:38:33 -0700 | [diff] [blame] | 61 | import com.android.launcher3.folder.FolderIcon; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 62 | import com.android.launcher3.graphics.IconPalette; |
Tony Wickham | e1cb93f | 2019-05-03 11:27:32 -0700 | [diff] [blame] | 63 | import com.android.launcher3.graphics.IconShape; |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 64 | import com.android.launcher3.graphics.PlaceHolderIconDrawable; |
Sunny Goyal | 96ac68a | 2017-02-02 16:37:21 -0800 | [diff] [blame] | 65 | import com.android.launcher3.graphics.PreloadIconDrawable; |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 66 | import com.android.launcher3.icons.DotRenderer; |
Sunny Goyal | fe8e4a9 | 2018-11-13 19:43:57 -0800 | [diff] [blame] | 67 | import com.android.launcher3.icons.IconCache.IconLoadRequest; |
| 68 | import com.android.launcher3.icons.IconCache.ItemInfoUpdateReceiver; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 69 | import com.android.launcher3.icons.LauncherIcons; |
Sunny Goyal | e396abf | 2020-04-06 15:11:17 -0700 | [diff] [blame] | 70 | import com.android.launcher3.model.data.AppInfo; |
| 71 | import com.android.launcher3.model.data.ItemInfo; |
| 72 | import com.android.launcher3.model.data.ItemInfoWithIcon; |
| 73 | import com.android.launcher3.model.data.PackageItemInfo; |
| 74 | import com.android.launcher3.model.data.PromiseAppInfo; |
Samuel Fufa | 02be2a4 | 2020-09-23 00:45:27 -0700 | [diff] [blame] | 75 | import com.android.launcher3.model.data.RemoteActionItemInfo; |
Sunny Goyal | e396abf | 2020-04-06 15:11:17 -0700 | [diff] [blame] | 76 | import com.android.launcher3.model.data.WorkspaceItemInfo; |
Samuel Fufa | 167210a | 2020-05-12 18:40:11 -0700 | [diff] [blame] | 77 | import com.android.launcher3.util.SafeCloseable; |
Sunny Goyal | fe8e4a9 | 2018-11-13 19:43:57 -0800 | [diff] [blame] | 78 | import com.android.launcher3.views.ActivityContext; |
Jon Miranda | 9b78e19 | 2019-08-30 18:42:01 -0700 | [diff] [blame] | 79 | import com.android.launcher3.views.IconLabelDotView; |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 80 | |
Sunny Goyal | c469aad | 2015-10-01 11:24:23 -0700 | [diff] [blame] | 81 | import java.text.NumberFormat; |
| 82 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 83 | /** |
| 84 | * TextView that draws a bubble behind the text. We cannot use a LineBackgroundSpan |
| 85 | * because we want to make the bubble taller than the text and TextView's clip is |
| 86 | * too aggressive. |
| 87 | */ |
Jon Miranda | 9b78e19 | 2019-08-30 18:42:01 -0700 | [diff] [blame] | 88 | public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver, OnResumeCallback, |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 89 | IconLabelDotView, DraggableView, Reorderable, AllAppsSectionDecorator.SelfDecoratingView { |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 90 | |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 91 | private static final int DISPLAY_WORKSPACE = 0; |
| 92 | private static final int DISPLAY_ALL_APPS = 1; |
Sunny Goyal | baec6ff | 2016-09-14 11:26:21 -0700 | [diff] [blame] | 93 | private static final int DISPLAY_FOLDER = 2; |
Samuel Fufa | 4a53c70 | 2020-08-04 14:06:55 -0700 | [diff] [blame] | 94 | private static final int DISPLAY_HERO_APP = 5; |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 95 | |
Samuel Fufa | d6bacdc | 2020-08-23 21:56:07 -0700 | [diff] [blame] | 96 | private static final int[] STATE_PRESSED = new int[]{android.R.attr.state_pressed}; |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 97 | private static final float HIGHLIGHT_SCALE = 1.16f; |
| 98 | |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 99 | |
Adam Cohen | 1d13c0b | 2020-04-21 16:29:12 -0700 | [diff] [blame] | 100 | private final PointF mTranslationForReorderBounce = new PointF(0, 0); |
| 101 | private final PointF mTranslationForReorderPreview = new PointF(0, 0); |
| 102 | |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 103 | private static final int ICON_UPDATE_ANIMATION_DURATION = 375; |
| 104 | |
Adam Cohen | 1d13c0b | 2020-04-21 16:29:12 -0700 | [diff] [blame] | 105 | private float mScaleForReorderBounce = 1f; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 106 | |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 107 | protected final Paint mHighlightPaint = new Paint(Paint.ANTI_ALIAS_FLAG); |
| 108 | private final Path mHighlightPath = new Path(); |
| 109 | protected int mHighlightColor = Color.TRANSPARENT; |
| 110 | private final BlurMaskFilter mHighlightShadowFilter; |
| 111 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 112 | private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY |
| 113 | = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") { |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 114 | @Override |
| 115 | public Float get(BubbleTextView bubbleTextView) { |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 116 | return bubbleTextView.mDotParams.scale; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | @Override |
| 120 | public void set(BubbleTextView bubbleTextView, Float value) { |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 121 | bubbleTextView.mDotParams.scale = value; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 122 | bubbleTextView.invalidate(); |
| 123 | } |
| 124 | }; |
| 125 | |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 126 | public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY |
| 127 | = new Property<BubbleTextView, Float>(Float.class, "textAlpha") { |
Tony | 8f40280 | 2017-06-16 17:24:54 -0700 | [diff] [blame] | 128 | @Override |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 129 | public Float get(BubbleTextView bubbleTextView) { |
| 130 | return bubbleTextView.mTextAlpha; |
Tony | 8f40280 | 2017-06-16 17:24:54 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | @Override |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 134 | public void set(BubbleTextView bubbleTextView, Float alpha) { |
Tony | 8f40280 | 2017-06-16 17:24:54 -0700 | [diff] [blame] | 135 | bubbleTextView.setTextAlpha(alpha); |
| 136 | } |
| 137 | }; |
| 138 | |
Sunny Goyal | fe8e4a9 | 2018-11-13 19:43:57 -0800 | [diff] [blame] | 139 | private final ActivityContext mActivity; |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 140 | private Drawable mIcon; |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 141 | private boolean mCenterVertically; |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 142 | |
Samuel Fufa | c96fa24 | 2019-09-26 23:06:32 -0700 | [diff] [blame] | 143 | private final int mDisplay; |
| 144 | |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 145 | private final CheckLongPressHelper mLongPressHelper; |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 146 | |
| 147 | private final boolean mLayoutHorizontal; |
| 148 | private final int mIconSize; |
| 149 | |
| 150 | @ViewDebug.ExportedProperty(category = "launcher") |
| 151 | private boolean mIsIconVisible = true; |
| 152 | @ViewDebug.ExportedProperty(category = "launcher") |
| 153 | private int mTextColor; |
| 154 | @ViewDebug.ExportedProperty(category = "launcher") |
| 155 | private float mTextAlpha = 1; |
| 156 | |
Tony | 4043b05 | 2018-08-17 13:47:39 -0700 | [diff] [blame] | 157 | @ViewDebug.ExportedProperty(category = "launcher") |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 158 | private DotInfo mDotInfo; |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 159 | private DotRenderer mDotRenderer; |
| 160 | @ViewDebug.ExportedProperty(category = "launcher", deepExport = true) |
| 161 | private DotRenderer.DrawParams mDotParams; |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 162 | private Animator mDotScaleAnim; |
| 163 | private boolean mForceHideDot; |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 164 | |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 165 | @ViewDebug.ExportedProperty(category = "launcher") |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 166 | private boolean mStayPressed; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 167 | @ViewDebug.ExportedProperty(category = "launcher") |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 168 | private boolean mIgnorePressedStateChange; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 169 | @ViewDebug.ExportedProperty(category = "launcher") |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 170 | private boolean mDisableRelayout = false; |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 171 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 172 | private IconLoadRequest mIconLoadRequest; |
| 173 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 174 | public BubbleTextView(Context context) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 175 | this(context, null, 0); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | public BubbleTextView(Context context, AttributeSet attrs) { |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 179 | this(context, attrs, 0); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | public BubbleTextView(Context context, AttributeSet attrs, int defStyle) { |
| 183 | super(context, attrs, defStyle); |
Sunny Goyal | fe8e4a9 | 2018-11-13 19:43:57 -0800 | [diff] [blame] | 184 | mActivity = ActivityContext.lookupContext(context); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 185 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 186 | TypedArray a = context.obtainStyledAttributes(attrs, |
| 187 | R.styleable.BubbleTextView, defStyle, 0); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 188 | mLayoutHorizontal = a.getBoolean(R.styleable.BubbleTextView_layoutHorizontal, false); |
Sunny Goyal | c4d3201 | 2020-04-03 17:10:11 -0700 | [diff] [blame] | 189 | DeviceProfile grid = mActivity.getDeviceProfile(); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 190 | |
Samuel Fufa | c96fa24 | 2019-09-26 23:06:32 -0700 | [diff] [blame] | 191 | mDisplay = a.getInteger(R.styleable.BubbleTextView_iconDisplay, DISPLAY_WORKSPACE); |
Sunny Goyal | ae6e318 | 2019-04-30 12:04:37 -0700 | [diff] [blame] | 192 | final int defaultIconSize; |
Samuel Fufa | c96fa24 | 2019-09-26 23:06:32 -0700 | [diff] [blame] | 193 | if (mDisplay == DISPLAY_WORKSPACE) { |
Winson Chung | 44d0aac | 2015-05-11 18:02:55 -0700 | [diff] [blame] | 194 | setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.iconTextSizePx); |
Jon Miranda | 0966072 | 2017-06-14 14:20:14 -0700 | [diff] [blame] | 195 | setCompoundDrawablePadding(grid.iconDrawablePaddingPx); |
Sunny Goyal | ae6e318 | 2019-04-30 12:04:37 -0700 | [diff] [blame] | 196 | defaultIconSize = grid.iconSizePx; |
Samuel Fufa | c96fa24 | 2019-09-26 23:06:32 -0700 | [diff] [blame] | 197 | } else if (mDisplay == DISPLAY_ALL_APPS) { |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 198 | setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.allAppsIconTextSizePx); |
| 199 | setCompoundDrawablePadding(grid.allAppsIconDrawablePaddingPx); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 200 | defaultIconSize = grid.allAppsIconSizePx; |
Samuel Fufa | c96fa24 | 2019-09-26 23:06:32 -0700 | [diff] [blame] | 201 | } else if (mDisplay == DISPLAY_FOLDER) { |
Jon Miranda | bf7d812 | 2016-11-03 15:29:29 -0700 | [diff] [blame] | 202 | setTextSize(TypedValue.COMPLEX_UNIT_PX, grid.folderChildTextSizePx); |
Sunny Goyal | baec6ff | 2016-09-14 11:26:21 -0700 | [diff] [blame] | 203 | setCompoundDrawablePadding(grid.folderChildDrawablePaddingPx); |
Jon Miranda | bf7d812 | 2016-11-03 15:29:29 -0700 | [diff] [blame] | 204 | defaultIconSize = grid.folderChildIconSizePx; |
Samuel Fufa | 4a53c70 | 2020-08-04 14:06:55 -0700 | [diff] [blame] | 205 | } else if (mDisplay == DISPLAY_HERO_APP) { |
| 206 | defaultIconSize = grid.allAppsIconSizePx; |
Sunny Goyal | ae6e318 | 2019-04-30 12:04:37 -0700 | [diff] [blame] | 207 | } else { |
Samuel Fufa | 4a1d9b1 | 2019-09-19 17:28:00 -0700 | [diff] [blame] | 208 | // widget_selection or shortcut_popup |
Sunny Goyal | c4d3201 | 2020-04-03 17:10:11 -0700 | [diff] [blame] | 209 | defaultIconSize = grid.iconSizePx; |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 210 | } |
Samuel Fufa | 4a1d9b1 | 2019-09-19 17:28:00 -0700 | [diff] [blame] | 211 | |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 212 | mCenterVertically = a.getBoolean(R.styleable.BubbleTextView_centerVertically, false); |
Sunny Goyal | dfaccf6 | 2015-05-11 16:30:44 -0700 | [diff] [blame] | 213 | |
| 214 | mIconSize = a.getDimensionPixelSize(R.styleable.BubbleTextView_iconSizeOverride, |
| 215 | defaultIconSize); |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 216 | a.recycle(); |
| 217 | |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 218 | mLongPressHelper = new CheckLongPressHelper(this); |
| 219 | |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 220 | mDotParams = new DotRenderer.DrawParams(); |
| 221 | |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 222 | setEllipsize(TruncateAt.END); |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 223 | setAccessibilityDelegate(mActivity.getAccessibilityDelegate()); |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 224 | setTextAlpha(1f); |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 225 | |
| 226 | int shadowSize = context.getResources().getDimensionPixelSize( |
| 227 | R.dimen.blur_size_click_shadow); |
| 228 | mHighlightShadowFilter = new BlurMaskFilter(shadowSize, BlurMaskFilter.Blur.INNER); |
| 229 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 230 | } |
| 231 | |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 232 | @Override |
| 233 | protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { |
| 234 | // Disable marques when not focused to that, so that updating text does not cause relayout. |
| 235 | setEllipsize(focused ? TruncateAt.MARQUEE : TruncateAt.END); |
| 236 | super.onFocusChanged(focused, direction, previouslyFocusedRect); |
| 237 | } |
| 238 | |
Jon Miranda | 5254944 | 2017-10-26 11:28:06 -0700 | [diff] [blame] | 239 | /** |
| 240 | * Resets the view so it can be recycled. |
| 241 | */ |
| 242 | public void reset() { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 243 | mDotInfo = null; |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 244 | mDotParams.color = Color.TRANSPARENT; |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 245 | cancelDotScaleAnim(); |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 246 | mDotParams.scale = 0f; |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 247 | mForceHideDot = false; |
Samuel Fufa | ba6b47f | 2019-11-07 10:27:41 -0800 | [diff] [blame] | 248 | setBackground(null); |
Jon Miranda | 5254944 | 2017-10-26 11:28:06 -0700 | [diff] [blame] | 249 | } |
| 250 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 251 | private void cancelDotScaleAnim() { |
| 252 | if (mDotScaleAnim != null) { |
| 253 | mDotScaleAnim.cancel(); |
Tony | 4043b05 | 2018-08-17 13:47:39 -0700 | [diff] [blame] | 254 | } |
| 255 | } |
| 256 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 257 | private void animateDotScale(float... dotScales) { |
| 258 | cancelDotScaleAnim(); |
| 259 | mDotScaleAnim = ObjectAnimator.ofFloat(this, DOT_SCALE_PROPERTY, dotScales); |
| 260 | mDotScaleAnim.addListener(new AnimatorListenerAdapter() { |
Tony | 4043b05 | 2018-08-17 13:47:39 -0700 | [diff] [blame] | 261 | @Override |
| 262 | public void onAnimationEnd(Animator animation) { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 263 | mDotScaleAnim = null; |
Tony | 4043b05 | 2018-08-17 13:47:39 -0700 | [diff] [blame] | 264 | } |
| 265 | }); |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 266 | mDotScaleAnim.start(); |
Tony | 4043b05 | 2018-08-17 13:47:39 -0700 | [diff] [blame] | 267 | } |
| 268 | |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 269 | public void applyFromWorkspaceItem(WorkspaceItemInfo info) { |
| 270 | applyFromWorkspaceItem(info, false); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Adam Cohen | 29794c5 | 2019-06-21 12:50:30 -0700 | [diff] [blame] | 273 | @Override |
| 274 | public void setAccessibilityDelegate(AccessibilityDelegate delegate) { |
| 275 | if (delegate instanceof LauncherAccessibilityDelegate) { |
| 276 | super.setAccessibilityDelegate(delegate); |
| 277 | } else { |
| 278 | // NO-OP |
| 279 | // Workaround for b/129745295 where RecyclerView is setting our Accessibility |
| 280 | // delegate incorrectly. There are no cases when we shouldn't be using the |
| 281 | // LauncherAccessibilityDelegate for BubbleTextView. |
| 282 | } |
| 283 | } |
| 284 | |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 285 | public void applyFromWorkspaceItem(WorkspaceItemInfo info, boolean promiseStateChanged) { |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 286 | applyIconAndLabel(info); |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 287 | setTag(info); |
Mario Bertschler | 8ff9e1d | 2017-08-08 16:26:18 -0700 | [diff] [blame] | 288 | if (promiseStateChanged || (info.hasPromiseIconUi())) { |
Tony Wickham | 9a8d11f | 2017-01-11 09:53:12 -0800 | [diff] [blame] | 289 | applyPromiseState(promiseStateChanged); |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 290 | } |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 291 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 292 | applyDotState(info, false /* animate */); |
Michael Jurka | 67b2f6c | 2010-11-17 12:33:46 -0800 | [diff] [blame] | 293 | } |
| 294 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 295 | public void applyFromApplicationInfo(AppInfo info) { |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 296 | applyIconAndLabel(info); |
Sunny Goyal | f420438 | 2016-07-13 10:46:07 -0700 | [diff] [blame] | 297 | |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 298 | // We don't need to check the info since it's not a WorkspaceItemInfo |
Winson Chung | 888b3a1 | 2015-03-13 11:14:16 -0700 | [diff] [blame] | 299 | super.setTag(info); |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 300 | |
| 301 | // Verify high res immediately |
| 302 | verifyHighRes(); |
Tony Wickham | 010d255 | 2017-01-20 08:15:28 -0800 | [diff] [blame] | 303 | |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 304 | if (info instanceof PromiseAppInfo) { |
| 305 | PromiseAppInfo promiseAppInfo = (PromiseAppInfo) info; |
| 306 | applyProgressLevel(promiseAppInfo.level); |
| 307 | } |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 308 | applyDotState(info, false /* animate */); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Samuel Fufa | d6bacdc | 2020-08-23 21:56:07 -0700 | [diff] [blame] | 311 | /** |
| 312 | * Apply label and tag using a generic {@link ItemInfoWithIcon} |
| 313 | */ |
| 314 | public void applyFromItemInfoWithIcon(ItemInfoWithIcon info) { |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 315 | applyIconAndLabel(info); |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 316 | // We don't need to check the info since it's not a WorkspaceItemInfo |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 317 | super.setTag(info); |
| 318 | |
| 319 | // Verify high res immediately |
| 320 | verifyHighRes(); |
| 321 | } |
| 322 | |
Samuel Fufa | 02be2a4 | 2020-09-23 00:45:27 -0700 | [diff] [blame] | 323 | /** |
| 324 | * Apply label and tag using a {@link RemoteActionItemInfo} |
| 325 | */ |
| 326 | public void applyFromRemoteActionInfo(RemoteActionItemInfo remoteActionItemInfo) { |
| 327 | applyIconAndLabel(remoteActionItemInfo); |
| 328 | setTag(remoteActionItemInfo); |
| 329 | } |
| 330 | |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 331 | private void applyIconAndLabel(ItemInfoWithIcon info) { |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 332 | FastBitmapDrawable iconDrawable = newIcon(getContext(), info); |
Sunny Goyal | 3808a69 | 2019-10-25 13:41:28 -0700 | [diff] [blame] | 333 | mDotParams.color = IconPalette.getMutedColor(info.bitmap.color, 0.54f); |
Sunny Goyal | 179249d | 2017-12-19 16:49:24 -0800 | [diff] [blame] | 334 | |
Sunny Goyal | f420438 | 2016-07-13 10:46:07 -0700 | [diff] [blame] | 335 | setIcon(iconDrawable); |
| 336 | setText(info.title); |
| 337 | if (info.contentDescription != null) { |
| 338 | setContentDescription(info.isDisabled() |
| 339 | ? getContext().getString(R.string.disabled_app_label, info.contentDescription) |
| 340 | : info.contentDescription); |
| 341 | } |
| 342 | } |
| 343 | |
Winson Chung | 7501adf | 2015-06-02 11:24:28 -0700 | [diff] [blame] | 344 | /** |
| 345 | * Overrides the default long press timeout. |
| 346 | */ |
Tony | 2ca999c | 2018-09-24 17:24:51 -0400 | [diff] [blame] | 347 | public void setLongPressTimeoutFactor(float longPressTimeoutFactor) { |
| 348 | mLongPressHelper.setLongPressTimeoutFactor(longPressTimeoutFactor); |
Winson Chung | 7501adf | 2015-06-02 11:24:28 -0700 | [diff] [blame] | 349 | } |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 350 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 351 | @Override |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 352 | public void refreshDrawableState() { |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 353 | if (!mIgnorePressedStateChange) { |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 354 | super.refreshDrawableState(); |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 355 | } |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 356 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 357 | |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 358 | @Override |
| 359 | protected int[] onCreateDrawableState(int extraSpace) { |
| 360 | final int[] drawableState = super.onCreateDrawableState(extraSpace + 1); |
| 361 | if (mStayPressed) { |
| 362 | mergeDrawableStates(drawableState, STATE_PRESSED); |
| 363 | } |
| 364 | return drawableState; |
| 365 | } |
| 366 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 367 | /** Returns the icon for this view. */ |
| 368 | public Drawable getIcon() { |
| 369 | return mIcon; |
| 370 | } |
| 371 | |
Tony Wickham | 1bce7fd | 2016-04-28 17:39:03 -0700 | [diff] [blame] | 372 | @Override |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 373 | public boolean onTouchEvent(MotionEvent event) { |
Samuel Fufa | 4a1d9b1 | 2019-09-19 17:28:00 -0700 | [diff] [blame] | 374 | // ignore events if they happen in padding area |
Sunny Goyal | 17feee8 | 2020-03-24 13:55:15 -0700 | [diff] [blame] | 375 | if (event.getAction() == MotionEvent.ACTION_DOWN |
Sunny Goyal | 44a3b20 | 2020-07-09 08:27:06 -0700 | [diff] [blame] | 376 | && shouldIgnoreTouchDown(event.getX(), event.getY())) { |
Samuel Fufa | 4a1d9b1 | 2019-09-19 17:28:00 -0700 | [diff] [blame] | 377 | return false; |
| 378 | } |
Sunny Goyal | 17feee8 | 2020-03-24 13:55:15 -0700 | [diff] [blame] | 379 | if (isLongClickable()) { |
| 380 | super.onTouchEvent(event); |
| 381 | mLongPressHelper.onTouchEvent(event); |
| 382 | // Keep receiving the rest of the events |
| 383 | return true; |
| 384 | } else { |
| 385 | return super.onTouchEvent(event); |
Mady Mellor | ef044dd | 2015-06-02 15:35:07 -0700 | [diff] [blame] | 386 | } |
Michael Jurka | 38b4f7c | 2010-12-14 16:46:39 -0800 | [diff] [blame] | 387 | } |
| 388 | |
Sunny Goyal | 44a3b20 | 2020-07-09 08:27:06 -0700 | [diff] [blame] | 389 | /** |
| 390 | * Returns true if the touch down at the provided position be ignored |
| 391 | */ |
| 392 | protected boolean shouldIgnoreTouchDown(float x, float y) { |
| 393 | return y < getPaddingTop() |
| 394 | || x < getPaddingLeft() |
| 395 | || y > getHeight() - getPaddingBottom() |
| 396 | || x > getWidth() - getPaddingRight(); |
| 397 | } |
| 398 | |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 399 | void setStayPressed(boolean stayPressed) { |
| 400 | mStayPressed = stayPressed; |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 401 | refreshDrawableState(); |
Patrick Dubroy | 3499d8c | 2011-03-10 17:17:23 -0800 | [diff] [blame] | 402 | } |
| 403 | |
Sunny Goyal | 3dce5f3 | 2017-10-05 11:40:05 -0700 | [diff] [blame] | 404 | @Override |
Hyunyoung Song | ef468d8 | 2019-01-03 01:02:43 -0800 | [diff] [blame] | 405 | public void onVisibilityAggregated(boolean isVisible) { |
| 406 | super.onVisibilityAggregated(isVisible); |
| 407 | if (mIcon != null) { |
Hyunyoung Song | a237385 | 2019-01-04 12:01:32 -0800 | [diff] [blame] | 408 | mIcon.setVisible(isVisible, false); |
Hyunyoung Song | ef468d8 | 2019-01-03 01:02:43 -0800 | [diff] [blame] | 409 | } |
| 410 | } |
| 411 | |
| 412 | @Override |
Sunny Goyal | 3dce5f3 | 2017-10-05 11:40:05 -0700 | [diff] [blame] | 413 | public void onLauncherResume() { |
| 414 | // Reset the pressed state of icon that was locked in the press state while activity |
| 415 | // was launching |
| 416 | setStayPressed(false); |
| 417 | } |
| 418 | |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 419 | void clearPressedBackground() { |
| 420 | setPressed(false); |
| 421 | setStayPressed(false); |
| 422 | } |
| 423 | |
| 424 | @Override |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 425 | public boolean onKeyUp(int keyCode, KeyEvent event) { |
| 426 | // Unlike touch events, keypress event propagate pressed state change immediately, |
| 427 | // without waiting for onClickHandler to execute. Disable pressed state changes here |
| 428 | // to avoid flickering. |
| 429 | mIgnorePressedStateChange = true; |
| 430 | boolean result = super.onKeyUp(keyCode, event); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 431 | mIgnorePressedStateChange = false; |
Sunny Goyal | 2a76e3f | 2017-02-16 13:33:15 -0800 | [diff] [blame] | 432 | refreshDrawableState(); |
Sunny Goyal | 508da15 | 2014-08-14 10:53:27 -0700 | [diff] [blame] | 433 | return result; |
Michael Jurka | ddd62e9 | 2011-02-16 17:49:14 -0800 | [diff] [blame] | 434 | } |
Patrick Dubroy | a017c03 | 2011-03-09 15:58:32 -0800 | [diff] [blame] | 435 | |
Sunny Goyal | 9314b7c | 2017-06-23 10:36:27 -0700 | [diff] [blame] | 436 | @SuppressWarnings("wrongcall") |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 437 | protected void drawWithoutDot(Canvas canvas) { |
Sunny Goyal | 9314b7c | 2017-06-23 10:36:27 -0700 | [diff] [blame] | 438 | super.onDraw(canvas); |
| 439 | } |
| 440 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 441 | @Override |
Sunny Goyal | 9314b7c | 2017-06-23 10:36:27 -0700 | [diff] [blame] | 442 | public void onDraw(Canvas canvas) { |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 443 | if (FeatureFlags.ENABLE_DEVICE_SEARCH.get() && mHighlightColor != Color.TRANSPARENT) { |
| 444 | int count = canvas.save(); |
| 445 | drawFocusHighlight(canvas); |
| 446 | canvas.restoreToCount(count); |
| 447 | } |
Sunny Goyal | 9314b7c | 2017-06-23 10:36:27 -0700 | [diff] [blame] | 448 | super.onDraw(canvas); |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | protected void drawFocusHighlight(Canvas canvas) { |
| 452 | boolean isBadged = getTag() instanceof ItemInfo && !Process.myUserHandle().equals( |
| 453 | ((ItemInfo) getTag()).user); |
| 454 | float insetScale = (HIGHLIGHT_SCALE - 1) / 2; |
| 455 | canvas.translate(-getIconSize() * insetScale, -insetScale * getIconSize()); |
| 456 | float outlineSize = getIconSize() * HIGHLIGHT_SCALE; |
| 457 | mHighlightPath.reset(); |
| 458 | mHighlightPaint.reset(); |
| 459 | getIconBounds(mDotParams.iconBounds); |
| 460 | getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left, mDotParams.iconBounds.top, |
| 461 | outlineSize / 2); |
| 462 | if (isBadged) { |
| 463 | float borderSize = outlineSize - getIconSize(); |
| 464 | float badgeSize = LauncherIcons.getBadgeSizeForIconSize(getIconSize()) + borderSize; |
| 465 | float badgeInset = outlineSize - badgeSize; |
| 466 | getShape().addToPath(mHighlightPath, mDotParams.iconBounds.left + badgeInset, |
| 467 | mDotParams.iconBounds.top + badgeInset, badgeSize / 2); |
| 468 | } |
| 469 | mHighlightPaint.setMaskFilter(mHighlightShadowFilter); |
| 470 | mHighlightPaint.setColor(mDotParams.color); |
| 471 | canvas.drawPath(mHighlightPath, mHighlightPaint); |
| 472 | mHighlightPaint.setMaskFilter(null); |
| 473 | mHighlightPaint.setColor(mHighlightColor); |
| 474 | canvas.drawPath(mHighlightPath, mHighlightPaint); |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | /** |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 478 | * Draws the notification dot in the top right corner of the icon bounds. |
Samuel Fufa | d6bacdc | 2020-08-23 21:56:07 -0700 | [diff] [blame] | 479 | * |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 480 | * @param canvas The canvas to draw to. |
| 481 | */ |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 482 | protected void drawDotIfNecessary(Canvas canvas) { |
| 483 | if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) { |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 484 | getIconBounds(mDotParams.iconBounds); |
Samuel Fufa | d6bacdc | 2020-08-23 21:56:07 -0700 | [diff] [blame] | 485 | Utilities.scaleRectAboutCenter(mDotParams.iconBounds, |
| 486 | IconShape.getNormalizationScale()); |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 487 | final int scrollX = getScrollX(); |
| 488 | final int scrollY = getScrollY(); |
| 489 | canvas.translate(scrollX, scrollY); |
Tony Wickham | 8912b04 | 2018-11-29 15:28:53 -0800 | [diff] [blame] | 490 | mDotRenderer.draw(canvas, mDotParams); |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 491 | canvas.translate(-scrollX, -scrollY); |
| 492 | } |
| 493 | } |
| 494 | |
Jon Miranda | 9b78e19 | 2019-08-30 18:42:01 -0700 | [diff] [blame] | 495 | @Override |
| 496 | public void setForceHideDot(boolean forceHideDot) { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 497 | if (mForceHideDot == forceHideDot) { |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 498 | return; |
| 499 | } |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 500 | mForceHideDot = forceHideDot; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 501 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 502 | if (forceHideDot) { |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 503 | invalidate(); |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 504 | } else if (hasDot()) { |
| 505 | animateDotScale(0, 1); |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 506 | } |
| 507 | } |
| 508 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 509 | private boolean hasDot() { |
| 510 | return mDotInfo != null; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | public void getIconBounds(Rect outBounds) { |
Tony | 05d98c2 | 2018-07-23 08:01:15 -0700 | [diff] [blame] | 514 | getIconBounds(this, outBounds, mIconSize); |
| 515 | } |
| 516 | |
| 517 | public static void getIconBounds(View iconView, Rect outBounds, int iconSize) { |
| 518 | int top = iconView.getPaddingTop(); |
| 519 | int left = (iconView.getWidth() - iconSize) / 2; |
| 520 | int right = left + iconSize; |
| 521 | int bottom = top + iconSize; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 522 | outBounds.set(left, top, right, bottom); |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 523 | } |
Joe Onorato | 9c1289c | 2009-08-17 11:03:03 -0400 | [diff] [blame] | 524 | |
| 525 | @Override |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 526 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
| 527 | if (mCenterVertically) { |
| 528 | Paint.FontMetrics fm = getPaint().getFontMetrics(); |
| 529 | int cellHeightPx = mIconSize + getCompoundDrawablePadding() + |
| 530 | (int) Math.ceil(fm.bottom - fm.top); |
| 531 | int height = MeasureSpec.getSize(heightMeasureSpec); |
| 532 | setPadding(getPaddingLeft(), (height - cellHeightPx) / 2, getPaddingRight(), |
| 533 | getPaddingBottom()); |
| 534 | } |
| 535 | super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
| 536 | } |
| 537 | |
| 538 | @Override |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 539 | public void setTextColor(int color) { |
| 540 | mTextColor = color; |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 541 | super.setTextColor(getModifiedColor()); |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 542 | } |
| 543 | |
Adam Cohen | 96bb798 | 2014-07-07 11:58:56 -0700 | [diff] [blame] | 544 | @Override |
| 545 | public void setTextColor(ColorStateList colors) { |
| 546 | mTextColor = colors.getDefaultColor(); |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 547 | if (Float.compare(mTextAlpha, 1) == 0) { |
| 548 | super.setTextColor(colors); |
| 549 | } else { |
| 550 | super.setTextColor(getModifiedColor()); |
| 551 | } |
Adam Cohen | 477828c | 2013-09-20 12:05:49 -0700 | [diff] [blame] | 552 | } |
| 553 | |
Tony | 7308cde | 2017-06-27 22:38:33 -0700 | [diff] [blame] | 554 | public boolean shouldTextBeVisible() { |
| 555 | // Text should be visible everywhere but the hotseat. |
| 556 | Object tag = getParent() instanceof FolderIcon ? ((View) getParent()).getTag() : getTag(); |
| 557 | ItemInfo info = tag instanceof ItemInfo ? (ItemInfo) tag : null; |
Samuel Fufa | efb665d | 2019-10-30 13:24:14 -0700 | [diff] [blame] | 558 | return info == null || (info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT |
| 559 | && info.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT_PREDICTION); |
Tony | 7308cde | 2017-06-27 22:38:33 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 562 | public void setTextVisibility(boolean visible) { |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 563 | setTextAlpha(visible ? 1 : 0); |
| 564 | } |
| 565 | |
| 566 | private void setTextAlpha(float alpha) { |
| 567 | mTextAlpha = alpha; |
| 568 | super.setTextColor(getModifiedColor()); |
| 569 | } |
| 570 | |
| 571 | private int getModifiedColor() { |
| 572 | if (mTextAlpha == 0) { |
| 573 | // Special case to prevent text shadows in high contrast mode |
| 574 | return Color.TRANSPARENT; |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 575 | } |
Sunny Goyal | 066ace1 | 2018-11-05 11:08:31 -0800 | [diff] [blame] | 576 | return setColorAlphaBound(mTextColor, Math.round(Color.alpha(mTextColor) * mTextAlpha)); |
Tony | 8f40280 | 2017-06-16 17:24:54 -0700 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | /** |
| 580 | * Creates an animator to fade the text in or out. |
Samuel Fufa | d6bacdc | 2020-08-23 21:56:07 -0700 | [diff] [blame] | 581 | * |
Tony | 8f40280 | 2017-06-16 17:24:54 -0700 | [diff] [blame] | 582 | * @param fadeIn Whether the text should fade in or fade out. |
| 583 | */ |
Sunny Goyal | 4e5a878 | 2017-06-23 09:34:06 -0700 | [diff] [blame] | 584 | public ObjectAnimator createTextAlphaAnimator(boolean fadeIn) { |
Sunny Goyal | ed7a693 | 2018-04-13 11:41:50 -0700 | [diff] [blame] | 585 | float toAlpha = shouldTextBeVisible() && fadeIn ? 1 : 0; |
Jon Miranda | 83cdca6 | 2019-04-15 13:01:05 -0700 | [diff] [blame] | 586 | return ObjectAnimator.ofFloat(this, TEXT_ALPHA_PROPERTY, toAlpha); |
Tony | 8f40280 | 2017-06-16 17:24:54 -0700 | [diff] [blame] | 587 | } |
| 588 | |
Winson Chung | affd7b4 | 2010-08-20 15:11:56 -0700 | [diff] [blame] | 589 | @Override |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 590 | public void cancelLongPress() { |
| 591 | super.cancelLongPress(); |
Winson Chung | 88f3345 | 2012-02-23 15:23:44 -0800 | [diff] [blame] | 592 | mLongPressHelper.cancelLongPress(); |
| 593 | } |
Chris Wren | aeff7ea | 2014-02-14 16:59:24 -0500 | [diff] [blame] | 594 | |
Tony Wickham | 9a8d11f | 2017-01-11 09:53:12 -0800 | [diff] [blame] | 595 | public void applyPromiseState(boolean promiseStateChanged) { |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 596 | if (getTag() instanceof WorkspaceItemInfo) { |
| 597 | WorkspaceItemInfo info = (WorkspaceItemInfo) getTag(); |
Mario Bertschler | 8ff9e1d | 2017-08-08 16:26:18 -0700 | [diff] [blame] | 598 | final boolean isPromise = info.hasPromiseIconUi(); |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 599 | final int progressLevel = isPromise ? |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 600 | ((info.hasStatusFlag(WorkspaceItemInfo.FLAG_INSTALL_SESSION_ACTIVE) ? |
Sunny Goyal | 3494262 | 2014-08-29 17:20:55 -0700 | [diff] [blame] | 601 | info.getInstallProgress() : 0)) : 100; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 602 | |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 603 | PreloadIconDrawable preloadDrawable = applyProgressLevel(progressLevel); |
| 604 | if (preloadDrawable != null && promiseStateChanged) { |
| 605 | preloadDrawable.maybePerformFinishedAnimation(); |
| 606 | } |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | public PreloadIconDrawable applyProgressLevel(int progressLevel) { |
| 611 | if (getTag() instanceof ItemInfoWithIcon) { |
| 612 | ItemInfoWithIcon info = (ItemInfoWithIcon) getTag(); |
Mario Bertschler | 230612f | 2017-09-27 17:05:21 -0700 | [diff] [blame] | 613 | if (progressLevel >= 100) { |
| 614 | setContentDescription(info.contentDescription != null |
| 615 | ? info.contentDescription : ""); |
| 616 | } else if (progressLevel > 0) { |
| 617 | setContentDescription(getContext() |
| 618 | .getString(R.string.app_downloading_title, info.title, |
| 619 | NumberFormat.getPercentInstance().format(progressLevel * 0.01))); |
| 620 | } else { |
| 621 | setContentDescription(getContext() |
| 622 | .getString(R.string.app_waiting_download_title, info.title)); |
| 623 | } |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 624 | if (mIcon != null) { |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 625 | final PreloadIconDrawable preloadDrawable; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 626 | if (mIcon instanceof PreloadIconDrawable) { |
| 627 | preloadDrawable = (PreloadIconDrawable) mIcon; |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 628 | preloadDrawable.setLevel(progressLevel); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 629 | } else { |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 630 | preloadDrawable = newPendingIcon(getContext(), info); |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 631 | preloadDrawable.setLevel(progressLevel); |
Tony Wickham | bfbf7f9 | 2016-05-19 11:19:39 -0700 | [diff] [blame] | 632 | setIcon(preloadDrawable); |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 633 | } |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 634 | return preloadDrawable; |
Sunny Goyal | e755d46 | 2014-07-22 13:48:29 -0700 | [diff] [blame] | 635 | } |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 636 | } |
Mario Bertschler | 08ffaae | 2017-03-20 11:30:27 -0700 | [diff] [blame] | 637 | return null; |
Chris Wren | 40c5ed3 | 2014-06-24 18:24:23 -0400 | [diff] [blame] | 638 | } |
Sunny Goyal | 95abbb3 | 2014-08-04 10:53:22 -0700 | [diff] [blame] | 639 | |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 640 | public void applyDotState(ItemInfo itemInfo, boolean animate) { |
Tony Wickham | 9a8d11f | 2017-01-11 09:53:12 -0800 | [diff] [blame] | 641 | if (mIcon instanceof FastBitmapDrawable) { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 642 | boolean wasDotted = mDotInfo != null; |
| 643 | mDotInfo = mActivity.getDotInfoForItem(itemInfo); |
| 644 | boolean isDotted = mDotInfo != null; |
| 645 | float newDotScale = isDotted ? 1f : 0; |
Samuel Fufa | c96fa24 | 2019-09-26 23:06:32 -0700 | [diff] [blame] | 646 | if (mDisplay == DISPLAY_ALL_APPS) { |
| 647 | mDotRenderer = mActivity.getDeviceProfile().mDotRendererAllApps; |
| 648 | } else { |
| 649 | mDotRenderer = mActivity.getDeviceProfile().mDotRendererWorkSpace; |
| 650 | } |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 651 | if (wasDotted || isDotted) { |
| 652 | // Animate when a dot is first added or when it is removed. |
| 653 | if (animate && (wasDotted ^ isDotted) && isShown()) { |
| 654 | animateDotScale(newDotScale); |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 655 | } else { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 656 | cancelDotScaleAnim(); |
| 657 | mDotParams.scale = newDotScale; |
Tony Wickham | 1237df0 | 2017-02-24 08:59:36 -0800 | [diff] [blame] | 658 | invalidate(); |
| 659 | } |
| 660 | } |
Tony Wickham | 305e920 | 2018-01-23 17:46:47 -0800 | [diff] [blame] | 661 | if (itemInfo.contentDescription != null) { |
vadimt | da6dad5 | 2019-05-21 13:24:23 -0700 | [diff] [blame] | 662 | if (itemInfo.isDisabled()) { |
| 663 | setContentDescription(getContext().getString(R.string.disabled_app_label, |
| 664 | itemInfo.contentDescription)); |
| 665 | } else if (hasDot()) { |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 666 | int count = mDotInfo.getNotificationCount(); |
Tony Wickham | 305e920 | 2018-01-23 17:46:47 -0800 | [diff] [blame] | 667 | setContentDescription(getContext().getResources().getQuantityString( |
Tony Wickham | f34bee8 | 2018-12-03 18:11:39 -0800 | [diff] [blame] | 668 | R.plurals.dotted_app_label, count, itemInfo.contentDescription, count)); |
Tony Wickham | 305e920 | 2018-01-23 17:46:47 -0800 | [diff] [blame] | 669 | } else { |
| 670 | setContentDescription(itemInfo.contentDescription); |
| 671 | } |
| 672 | } |
Tony Wickham | 9a8d11f | 2017-01-11 09:53:12 -0800 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 676 | /** |
| 677 | * Sets the icon for this view based on the layout direction. |
| 678 | */ |
Samuel Fufa | 4b7f38b | 2020-10-06 18:37:46 -0700 | [diff] [blame] | 679 | protected void setIcon(Drawable icon) { |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 680 | if (mIsIconVisible) { |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 681 | applyCompoundDrawables(icon); |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 682 | } |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 683 | mIcon = icon; |
Hyunyoung Song | a237385 | 2019-01-04 12:01:32 -0800 | [diff] [blame] | 684 | if (mIcon != null) { |
| 685 | mIcon.setVisible(getWindowVisibility() == VISIBLE && isShown(), false); |
| 686 | } |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 687 | } |
| 688 | |
Jon Miranda | 9b78e19 | 2019-08-30 18:42:01 -0700 | [diff] [blame] | 689 | @Override |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 690 | public void setIconVisible(boolean visible) { |
| 691 | mIsIconVisible = visible; |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 692 | if (!mIsIconVisible) { |
| 693 | resetIconScale(); |
| 694 | } |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 695 | Drawable icon = visible ? mIcon : new ColorDrawable(Color.TRANSPARENT); |
Tony | 17b7f9b | 2017-05-23 12:19:09 -0700 | [diff] [blame] | 696 | applyCompoundDrawables(icon); |
Tony Wickham | 377ed3f | 2016-07-20 15:21:04 -0700 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | protected void applyCompoundDrawables(Drawable icon) { |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 700 | // If we had already set an icon before, disable relayout as the icon size is the |
| 701 | // same as before. |
| 702 | mDisableRelayout = mIcon != null; |
| 703 | |
| 704 | icon.setBounds(0, 0, mIconSize, mIconSize); |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 705 | |
| 706 | updateIcon(icon); |
| 707 | |
Schneider Victor-tulias | 3ee7018 | 2020-10-21 14:01:53 -0400 | [diff] [blame^] | 708 | ItemInfo itemInfo = (ItemInfo) getTag(); |
| 709 | |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 710 | // If the current icon is a placeholder color, animate its update. |
Schneider Victor-tulias | 3ee7018 | 2020-10-21 14:01:53 -0400 | [diff] [blame^] | 711 | if (mIcon != null |
| 712 | && mIcon instanceof PlaceHolderIconDrawable |
| 713 | && (itemInfo == null |
| 714 | || itemInfo.itemType != LauncherSettings.Favorites.ITEM_TYPE_DEEP_SHORTCUT)) { |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 715 | animateIconUpdate((PlaceHolderIconDrawable) mIcon, icon); |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 716 | } |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 717 | |
Sunny Goyal | 66dccad | 2018-03-19 12:00:51 -0700 | [diff] [blame] | 718 | mDisableRelayout = false; |
Winson Chung | b745afb | 2015-03-02 11:51:23 -0800 | [diff] [blame] | 719 | } |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 720 | |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 721 | @Override |
| 722 | public void requestLayout() { |
| 723 | if (!mDisableRelayout) { |
| 724 | super.requestLayout(); |
| 725 | } |
| 726 | } |
| 727 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 728 | /** |
| 729 | * Applies the item info if it is same as what the view is pointing to currently. |
| 730 | */ |
Sunny Goyal | 2d7cca1 | 2017-01-03 16:52:43 -0800 | [diff] [blame] | 731 | @Override |
| 732 | public void reapplyItemInfo(ItemInfoWithIcon info) { |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 733 | if (getTag() == info) { |
| 734 | mIconLoadRequest = null; |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 735 | mDisableRelayout = true; |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 736 | |
Jon Miranda | 7f522a2 | 2017-07-28 11:56:47 -0700 | [diff] [blame] | 737 | // Optimization: Starting in N, pre-uploads the bitmap to RenderThread. |
Sunny Goyal | 3808a69 | 2019-10-25 13:41:28 -0700 | [diff] [blame] | 738 | info.bitmap.icon.prepareToDraw(); |
Jon Miranda | 7f522a2 | 2017-07-28 11:56:47 -0700 | [diff] [blame] | 739 | |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 740 | if (info instanceof AppInfo) { |
| 741 | applyFromApplicationInfo((AppInfo) info); |
Sunny Goyal | 9589916 | 2019-03-27 16:03:06 -0700 | [diff] [blame] | 742 | } else if (info instanceof WorkspaceItemInfo) { |
| 743 | applyFromWorkspaceItem((WorkspaceItemInfo) info); |
Sunny Goyal | 0b0847b | 2018-03-14 12:30:11 -0700 | [diff] [blame] | 744 | mActivity.invalidateParent(info); |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 745 | } else if (info instanceof PackageItemInfo) { |
Samuel Fufa | d6bacdc | 2020-08-23 21:56:07 -0700 | [diff] [blame] | 746 | applyFromItemInfoWithIcon((PackageItemInfo) info); |
Samuel Fufa | 02be2a4 | 2020-09-23 00:45:27 -0700 | [diff] [blame] | 747 | } else if (info instanceof RemoteActionItemInfo) { |
| 748 | applyFromRemoteActionInfo((RemoteActionItemInfo) info); |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 749 | } |
Winson | c088049 | 2015-08-21 11:16:27 -0700 | [diff] [blame] | 750 | |
Sunny Goyal | 69b7564 | 2015-05-15 17:00:24 -0700 | [diff] [blame] | 751 | mDisableRelayout = false; |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 752 | } |
| 753 | } |
| 754 | |
| 755 | /** |
| 756 | * Verifies that the current icon is high-res otherwise posts a request to load the icon. |
| 757 | */ |
| 758 | public void verifyHighRes() { |
| 759 | if (mIconLoadRequest != null) { |
| 760 | mIconLoadRequest.cancel(); |
| 761 | mIconLoadRequest = null; |
| 762 | } |
Sunny Goyal | 2d7cca1 | 2017-01-03 16:52:43 -0800 | [diff] [blame] | 763 | if (getTag() instanceof ItemInfoWithIcon) { |
| 764 | ItemInfoWithIcon info = (ItemInfoWithIcon) getTag(); |
Sunny Goyal | 2b787e5 | 2018-08-20 15:01:03 -0700 | [diff] [blame] | 765 | if (info.usingLowResIcon()) { |
Sunny Goyal | 87f784c | 2017-01-11 10:48:34 -0800 | [diff] [blame] | 766 | mIconLoadRequest = LauncherAppState.getInstance(getContext()).getIconCache() |
Sunny Goyal | 0e08f16 | 2015-05-12 11:32:39 -0700 | [diff] [blame] | 767 | .updateIconInBackground(BubbleTextView.this, info); |
| 768 | } |
Sunny Goyal | 34b6527 | 2015-03-11 16:56:52 -0700 | [diff] [blame] | 769 | } |
| 770 | } |
Sunny Goyal | 4b6eb26 | 2015-05-14 19:24:40 -0700 | [diff] [blame] | 771 | |
Jon Miranda | 4717011 | 2017-03-03 14:57:14 -0800 | [diff] [blame] | 772 | public int getIconSize() { |
| 773 | return mIconSize; |
| 774 | } |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 775 | |
Adam Cohen | 1d13c0b | 2020-04-21 16:29:12 -0700 | [diff] [blame] | 776 | private void updateTranslation() { |
| 777 | super.setTranslationX(mTranslationForReorderBounce.x + mTranslationForReorderPreview.x); |
| 778 | super.setTranslationY(mTranslationForReorderBounce.y + mTranslationForReorderPreview.y); |
Adam Cohen | d916206 | 2020-03-24 16:35:35 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Adam Cohen | 1d13c0b | 2020-04-21 16:29:12 -0700 | [diff] [blame] | 781 | public void setReorderBounceOffset(float x, float y) { |
| 782 | mTranslationForReorderBounce.set(x, y); |
| 783 | updateTranslation(); |
Adam Cohen | d916206 | 2020-03-24 16:35:35 -0700 | [diff] [blame] | 784 | } |
| 785 | |
Adam Cohen | 1d13c0b | 2020-04-21 16:29:12 -0700 | [diff] [blame] | 786 | public void getReorderBounceOffset(PointF offset) { |
| 787 | offset.set(mTranslationForReorderBounce); |
| 788 | } |
| 789 | |
| 790 | @Override |
| 791 | public void setReorderPreviewOffset(float x, float y) { |
| 792 | mTranslationForReorderPreview.set(x, y); |
| 793 | updateTranslation(); |
| 794 | } |
| 795 | |
| 796 | @Override |
| 797 | public void getReorderPreviewOffset(PointF offset) { |
| 798 | offset.set(mTranslationForReorderPreview); |
| 799 | } |
| 800 | |
| 801 | public void setReorderBounceScale(float scale) { |
| 802 | mScaleForReorderBounce = scale; |
Adam Cohen | d916206 | 2020-03-24 16:35:35 -0700 | [diff] [blame] | 803 | super.setScaleX(scale); |
| 804 | super.setScaleY(scale); |
| 805 | } |
| 806 | |
Adam Cohen | 1d13c0b | 2020-04-21 16:29:12 -0700 | [diff] [blame] | 807 | public float getReorderBounceScale() { |
| 808 | return mScaleForReorderBounce; |
Adam Cohen | d916206 | 2020-03-24 16:35:35 -0700 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | public View getView() { |
| 812 | return this; |
| 813 | } |
| 814 | |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 815 | @Override |
| 816 | public int getViewType() { |
| 817 | return DRAGGABLE_ICON; |
| 818 | } |
| 819 | |
| 820 | @Override |
Adam Cohen | c77bc45 | 2020-05-07 11:55:19 -0700 | [diff] [blame] | 821 | public void getWorkspaceVisualDragBounds(Rect bounds) { |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 822 | DeviceProfile grid = mActivity.getDeviceProfile(); |
| 823 | BubbleTextView.getIconBounds(this, bounds, grid.iconSizePx); |
| 824 | } |
| 825 | |
Adam Cohen | c77bc45 | 2020-05-07 11:55:19 -0700 | [diff] [blame] | 826 | private int getIconSizeForDisplay(int display) { |
| 827 | DeviceProfile grid = mActivity.getDeviceProfile(); |
| 828 | switch (display) { |
| 829 | case DISPLAY_ALL_APPS: |
| 830 | return grid.allAppsIconSizePx; |
| 831 | case DISPLAY_WORKSPACE: |
| 832 | case DISPLAY_FOLDER: |
| 833 | default: |
| 834 | return grid.iconSizePx; |
| 835 | } |
| 836 | } |
| 837 | |
| 838 | public void getSourceVisualDragBounds(Rect bounds) { |
| 839 | BubbleTextView.getIconBounds(this, bounds, getIconSizeForDisplay(mDisplay)); |
| 840 | } |
| 841 | |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 842 | @Override |
Samuel Fufa | 167210a | 2020-05-12 18:40:11 -0700 | [diff] [blame] | 843 | public SafeCloseable prepareDrawDragView() { |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 844 | int highlightColor = mHighlightColor; |
| 845 | mHighlightColor = Color.TRANSPARENT; |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 846 | resetIconScale(); |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 847 | setForceHideDot(true); |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 848 | return () -> mHighlightColor = highlightColor; |
Adam Cohen | 6508699 | 2020-02-19 08:40:49 -0800 | [diff] [blame] | 849 | } |
Sunny Goyal | 30ac97d | 2020-06-24 23:47:46 -0700 | [diff] [blame] | 850 | |
| 851 | private void resetIconScale() { |
| 852 | if (mIcon instanceof FastBitmapDrawable) { |
| 853 | ((FastBitmapDrawable) mIcon).setScale(1f); |
| 854 | } |
| 855 | } |
Schneider Victor-tulias | 350b462 | 2020-09-18 11:16:30 -0700 | [diff] [blame] | 856 | |
| 857 | private void updateIcon(Drawable newIcon) { |
| 858 | if (mLayoutHorizontal) { |
| 859 | setCompoundDrawablesRelative(newIcon, null, null, null); |
| 860 | } else { |
| 861 | setCompoundDrawables(null, newIcon, null, null); |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | private static void animateIconUpdate(PlaceHolderIconDrawable oldIcon, Drawable newIcon) { |
| 866 | int placeholderColor = oldIcon.mPaint.getColor(); |
| 867 | int originalAlpha = Color.alpha(placeholderColor); |
| 868 | |
| 869 | ValueAnimator iconUpdateAnimation = ValueAnimator.ofInt(originalAlpha, 0); |
| 870 | iconUpdateAnimation.setDuration(ICON_UPDATE_ANIMATION_DURATION); |
| 871 | iconUpdateAnimation.addUpdateListener(valueAnimator -> { |
| 872 | int newAlpha = (int) valueAnimator.getAnimatedValue(); |
| 873 | int newColor = ColorUtils.setAlphaComponent(placeholderColor, newAlpha); |
| 874 | |
| 875 | newIcon.setColorFilter(new PorterDuffColorFilter(newColor, Mode.SRC_ATOP)); |
| 876 | }); |
| 877 | iconUpdateAnimation.addListener(new AnimatorListenerAdapter() { |
| 878 | @Override |
| 879 | public void onAnimationEnd(Animator animation) { |
| 880 | newIcon.setColorFilter(null); |
| 881 | } |
| 882 | }); |
| 883 | iconUpdateAnimation.start(); |
| 884 | } |
Samuel Fufa | 314761a | 2020-10-14 10:15:07 -0700 | [diff] [blame] | 885 | |
| 886 | |
| 887 | @Override |
| 888 | public void decorate(int color) { |
| 889 | mHighlightColor = color; |
| 890 | invalidate(); |
| 891 | } |
| 892 | |
| 893 | @Override |
| 894 | public void removeDecoration() { |
| 895 | mHighlightColor = Color.TRANSPARENT; |
| 896 | invalidate(); |
| 897 | } |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 898 | } |