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