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