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