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