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