blob: 7b540d00c240fb08dfec5631f1312fc20f077a2d [file] [log] [blame]
Winson Chungb3800242013-10-24 11:01:54 -07001/*
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
17package com.android.launcher3;
18
Thales Lima12d0eff2022-03-25 17:06:11 +000019import static com.android.launcher3.InvariantDeviceProfile.INDEX_DEFAULT;
20import static com.android.launcher3.InvariantDeviceProfile.INDEX_LANDSCAPE;
21import static com.android.launcher3.InvariantDeviceProfile.INDEX_TWO_PANEL_LANDSCAPE;
22import static com.android.launcher3.InvariantDeviceProfile.INDEX_TWO_PANEL_PORTRAIT;
Jon Miranda58561d42021-03-17 10:51:54 -040023import static com.android.launcher3.Utilities.dpiFromPx;
Jon Mirandaaf3aed02021-05-06 18:28:45 -070024import static com.android.launcher3.Utilities.pxFromSp;
Alex Chau3d2c0622022-09-01 21:28:14 +010025import static com.android.launcher3.anim.Interpolators.LINEAR;
Alex Chauab800f72022-12-13 17:46:06 +000026import static com.android.launcher3.config.FeatureFlags.ENABLE_MULTI_DISPLAY_PARTIAL_DEPTH;
Jon Miranda92c1b5d2021-07-20 13:57:16 -070027import static com.android.launcher3.folder.ClippedFolderIconLayoutRule.ICON_OVERLAP_FACTOR;
Sunny Goyal65190ae2022-08-02 14:16:26 -070028import static com.android.launcher3.icons.GraphicsUtils.getShapePath;
Thales Limab35faed2022-09-05 16:30:01 -030029import static com.android.launcher3.testing.shared.ResourceUtils.INVALID_RESOURCE_HANDLE;
Pat Manning5f74bfd2022-07-20 12:08:54 +010030import static com.android.launcher3.testing.shared.ResourceUtils.pxFromDp;
Jon Miranda228877d2021-02-09 11:05:00 -050031
Sunny Goyal35c7b192021-04-20 16:51:10 -070032import android.annotation.SuppressLint;
Winson Chungb3800242013-10-24 11:01:54 -070033import android.content.Context;
Jon Mirandab28c4fc2017-06-20 10:58:36 -070034import android.content.res.Configuration;
Winson Chungb3800242013-10-24 11:01:54 -070035import android.content.res.Resources;
Thales Limab35faed2022-09-05 16:30:01 -030036import android.content.res.TypedArray;
Winson Chungb3800242013-10-24 11:01:54 -070037import android.graphics.Point;
Jon Miranda7ae64ff2016-11-21 16:18:46 -080038import android.graphics.PointF;
Winson Chungb3800242013-10-24 11:01:54 -070039import android.graphics.Rect;
Sunny Goyal35c7b192021-04-20 16:51:10 -070040import android.util.DisplayMetrics;
Sunny Goyal65190ae2022-08-02 14:16:26 -070041import android.util.SparseArray;
Sunny Goyal59d086c2018-05-07 17:31:40 -070042import android.view.Surface;
Winson Chungb3800242013-10-24 11:01:54 -070043
Sunny Goyal65190ae2022-08-02 14:16:26 -070044import androidx.annotation.NonNull;
Sihua Mae04aa202022-07-18 12:43:56 -070045import androidx.annotation.Nullable;
Sunny Goyal65190ae2022-08-02 14:16:26 -070046
Sunny Goyalc13403c2016-11-18 23:44:48 -080047import com.android.launcher3.CellLayout.ContainerType;
Jon Miranda228877d2021-02-09 11:05:00 -050048import com.android.launcher3.DevicePaddings.DevicePadding;
Alex Chaud67ddc42022-09-30 18:15:56 +010049import com.android.launcher3.config.FeatureFlags;
Tony Wickham8912b042018-11-29 15:28:53 -080050import com.android.launcher3.icons.DotRenderer;
Hyunyoung Song48cb7bc2018-09-25 17:03:34 -070051import com.android.launcher3.icons.IconNormalizer;
Sihua Mae04aa202022-07-18 12:43:56 -070052import com.android.launcher3.model.data.ItemInfo;
Sunny Goyal57b22792021-05-25 14:35:01 -070053import com.android.launcher3.uioverrides.ApiWrapper;
Sunny Goyalfd58da62020-08-11 12:06:49 -070054import com.android.launcher3.util.DisplayController;
55import com.android.launcher3.util.DisplayController.Info;
Sunny Goyalb46703d2020-05-27 17:52:03 -070056import com.android.launcher3.util.WindowBounds;
Winson1f064272016-07-18 17:18:02 -070057
Jon Miranda58561d42021-03-17 10:51:54 -040058import java.io.PrintWriter;
Alex Chaue818bcb2022-09-02 17:27:11 +010059import java.util.Locale;
Jon Miranda58561d42021-03-17 10:51:54 -040060
Sunny Goyal35c7b192021-04-20 16:51:10 -070061@SuppressLint("NewApi")
Winson Chungb3800242013-10-24 11:01:54 -070062public class DeviceProfile {
Adam Cohen2e6da152015-05-06 11:42:25 -070063
Sunny Goyal8b9919d2021-04-07 14:45:17 -070064 private static final int DEFAULT_DOT_SIZE = 100;
Alex Chau206ede92022-08-01 17:46:12 +010065 private static final float ALL_APPS_TABLET_MAX_ROWS = 5.5f;
Thales Limab35faed2022-09-05 16:30:01 -030066 private static final float MIN_FOLDER_TEXT_SIZE_SP = 16f;
Alex Chau206ede92022-08-01 17:46:12 +010067
Sihua Mae04aa202022-07-18 12:43:56 -070068 public static final PointF DEFAULT_SCALE = new PointF(1.0f, 1.0f);
69 public static final ViewScaleProvider DEFAULT_PROVIDER = itemInfo -> DEFAULT_SCALE;
70
Sunny Goyal57b22792021-05-25 14:35:01 -070071 // Ratio of empty space, qsb should take up to appear visually centered.
Pratyush9afe1ea2021-10-13 11:13:27 +000072 private final float mQsbCenterFactor;
Sunny Goyal1890f672020-04-30 12:28:00 -070073
Adam Cohen2e6da152015-05-06 11:42:25 -070074 public final InvariantDeviceProfile inv;
Sunny Goyalfd58da62020-08-11 12:06:49 -070075 private final Info mInfo;
Sunny Goyal35c7b192021-04-20 16:51:10 -070076 private final DisplayMetrics mMetrics;
Winson Chungbe876472014-05-14 14:15:20 -070077
Sunny Goyalc6205602015-05-21 20:46:33 -070078 // Device properties
79 public final boolean isTablet;
Sunny Goyalc6205602015-05-21 20:46:33 -070080 public final boolean isPhone;
81 public final boolean transposeLayoutWithOrientation;
Alex Chauab800f72022-12-13 17:46:06 +000082 public final boolean isMultiDisplay;
Sunny Goyal19ff7282021-04-22 10:12:54 -070083 public final boolean isTwoPanels;
Thales Limaa1012902022-01-13 17:58:42 +000084 public final boolean isQsbInline;
Hyunyoung Song18bfaaf2015-03-17 11:32:21 -070085
Sunny Goyalc6205602015-05-21 20:46:33 -070086 // Device properties in current orientation
Sunny Goyald792a772018-04-05 13:37:46 -070087 public final boolean isLandscape;
Sunny Goyald70e75a2018-02-22 10:07:32 -080088 public final boolean isMultiWindowMode;
Alex Chau6ed408f2022-03-04 12:58:05 +000089 public final boolean isGestureMode;
Sunny Goyald70e75a2018-02-22 10:07:32 -080090
Sunny Goyal0addbf02020-04-28 14:17:35 -070091 public final int windowX;
92 public final int windowY;
Sunny Goyalc6205602015-05-21 20:46:33 -070093 public final int widthPx;
94 public final int heightPx;
95 public final int availableWidthPx;
96 public final int availableHeightPx;
Sunny Goyal187b16c2022-03-01 16:53:23 -080097 public final int rotationHint;
Jon Mirandabba64512019-03-27 10:54:17 -070098
99 public final float aspectRatio;
100
Jon Mirandae126d722021-02-25 10:45:20 -0500101 public final boolean isScalableGrid;
Thales Lima83bedbf2021-10-05 17:47:39 +0100102 private final int mTypeIndex;
Jon Mirandae126d722021-02-25 10:45:20 -0500103
Tony Wickhamd6b40372015-09-23 18:37:57 -0700104 /**
105 * The maximum amount of left/right workspace padding as a percentage of the screen width.
106 * To be clear, this means that up to 7% of the screen width can be used as left padding, and
107 * 7% of the screen width can be used as right padding.
108 */
109 private static final float MAX_HORIZONTAL_PADDING_PERCENT = 0.14f;
Winson Chungb3800242013-10-24 11:01:54 -0700110
Jon Miranda3f9bab22017-07-28 14:50:17 -0700111 private static final float TALL_DEVICE_ASPECT_RATIO_THRESHOLD = 2.0f;
Jon Miranda80cddbc2021-07-22 13:51:16 -0700112 private static final float TALLER_DEVICE_ASPECT_RATIO_THRESHOLD = 2.15f;
Jon Miranda80dda302021-07-28 14:14:59 -0700113 private static final float TALL_DEVICE_EXTRA_SPACE_THRESHOLD_DP = 252;
114 private static final float TALL_DEVICE_MORE_EXTRA_SPACE_THRESHOLD_DP = 268;
Jon Miranda30d0aa22017-07-25 15:55:29 -0700115
Sunny Goyalc6205602015-05-21 20:46:33 -0700116 // Workspace
Thales Limad90faab2021-09-21 17:18:47 +0100117 public final int desiredWorkspaceHorizontalMarginOriginalPx;
118 public int desiredWorkspaceHorizontalMarginPx;
Alex Chau51da2192022-05-20 13:32:10 +0100119 public int gridVisualizationPaddingX;
120 public int gridVisualizationPaddingY;
Thales Lima78d00ad2021-09-30 11:29:06 +0100121 public Point cellLayoutBorderSpaceOriginalPx;
122 public Point cellLayoutBorderSpacePx;
Pat Manning08610ca2022-04-05 21:03:16 +0100123 public Rect cellLayoutPaddingPx = new Rect();
124
Sunny Goyalc6205602015-05-21 20:46:33 -0700125 public final int edgeMarginPx;
Alex Chau0c4e11b2022-07-08 18:41:36 +0100126 public final float workspaceContentScale;
Alex Chau906d8822022-05-23 10:42:25 +0100127 public final int workspaceSpringLoadedMinNextPageVisiblePx;
Sunny Goyalc6205602015-05-21 20:46:33 -0700128
Jon Miranda58561d42021-03-17 10:51:54 -0400129 private final int extraSpace;
Thales Lima171ee662022-11-22 15:52:49 +0000130 private int maxEmptySpace;
Jon Miranda228877d2021-02-09 11:05:00 -0500131 public int workspaceTopPadding;
132 public int workspaceBottomPadding;
133
Tony Wickham5edf9e22020-03-27 20:06:52 -0700134 // Workspace page indicator
135 public final int workspacePageIndicatorHeight;
136 private final int mWorkspacePageIndicatorOverlapWorkspace;
Winson1f064272016-07-18 17:18:02 -0700137
Sunny Goyalc6205602015-05-21 20:46:33 -0700138 // Workspace icons
Jon Mirandac9e69fa2021-03-22 17:13:34 -0400139 public float iconScale;
Sunny Goyalc6205602015-05-21 20:46:33 -0700140 public int iconSizePx;
141 public int iconTextSizePx;
142 public int iconDrawablePaddingPx;
Winson Chung5f4e0fd2015-05-22 11:12:27 -0700143 public int iconDrawablePaddingOriginalPx;
Winson Chungb3800242013-10-24 11:01:54 -0700144
Jon Mirandaab3c6812021-06-28 15:42:28 -0700145 public float cellScaleToFit;
Adam Cohen59400422014-03-05 18:07:04 -0800146 public int cellWidthPx;
147 public int cellHeightPx;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700148 public int workspaceCellPaddingXPx;
Adam Cohen59400422014-03-05 18:07:04 -0800149
Jon Mirandae126d722021-02-25 10:45:20 -0500150 public int cellYPaddingPx;
Jon Mirandae126d722021-02-25 10:45:20 -0500151
Sunny Goyalc6205602015-05-21 20:46:33 -0700152 // Folder
Jon Mirandae126d722021-02-25 10:45:20 -0500153 public float folderLabelTextScale;
154 public int folderLabelTextSizePx;
Thales Limab35faed2022-09-05 16:30:01 -0300155 public int folderFooterHeightPx;
Sunny Goyalc6205602015-05-21 20:46:33 -0700156 public int folderIconSizePx;
Jon Miranda591e3602018-03-28 11:37:00 -0700157 public int folderIconOffsetYPx;
Jon Mirandabf7d8122016-11-03 15:29:29 -0700158
Jon Mirandae126d722021-02-25 10:45:20 -0500159 // Folder content
Thales Limab35faed2022-09-05 16:30:01 -0300160 public int folderCellLayoutBorderSpacePx;
Jon Mirandae126d722021-02-25 10:45:20 -0500161 public int folderContentPaddingLeftRight;
162 public int folderContentPaddingTop;
163
Jon Mirandabf7d8122016-11-03 15:29:29 -0700164 // Folder cell
Sunny Goyalc6205602015-05-21 20:46:33 -0700165 public int folderCellWidthPx;
166 public int folderCellHeightPx;
Jon Mirandabf7d8122016-11-03 15:29:29 -0700167
168 // Folder child
169 public int folderChildIconSizePx;
170 public int folderChildTextSizePx;
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700171 public int folderChildDrawablePaddingPx;
Winson Chungb3800242013-10-24 11:01:54 -0700172
Sunny Goyalc6205602015-05-21 20:46:33 -0700173 // Hotseat
Thales Lima9938c2f2022-07-25 14:38:16 +0100174 public int numShownHotseatIcons;
Sunny Goyalc6205602015-05-21 20:46:33 -0700175 public int hotseatCellHeightPx;
Pat Manning26f70f72022-07-07 13:50:39 +0100176 public final boolean areNavButtonsInline;
Jon Miranda18751b62017-07-31 17:25:27 -0700177 // In portrait: size = height, in landscape: size = width
178 public int hotseatBarSizePx;
Thales Limab8c05952022-05-23 16:58:38 +0100179 public int hotseatBarBottomSpacePx;
Pat Manning26f70f72022-07-07 13:50:39 +0100180 public int hotseatBarEndOffset;
Thales Limab8c05952022-05-23 16:58:38 +0100181 public int hotseatQsbSpace;
Pat Manningde25c0d2022-04-05 19:11:26 +0100182 public int springLoadedHotseatBarTopMarginPx;
Tony Wickham1eeffbe2018-06-12 15:01:15 -0700183 // Start is the side next to the nav bar, end is the side next to the workspace
184 public final int hotseatBarSidePaddingStartPx;
185 public final int hotseatBarSidePaddingEndPx;
Alex Chau206ede92022-08-01 17:46:12 +0100186 public int hotseatQsbWidth; // only used when isQsbInline
Sunny Goyal57b22792021-05-25 14:35:01 -0700187 public final int hotseatQsbHeight;
Thales Limab8c05952022-05-23 16:58:38 +0100188 public final int hotseatQsbVisualHeight;
189 private final int hotseatQsbShadowHeight;
Thales Limadd027342022-01-07 12:54:37 +0000190 public int hotseatBorderSpace;
Thales Lima6a590062022-11-22 15:52:49 +0000191 private int minHotseatIconSpacePx;
192 private int minHotseatQsbWidthPx;
193 private final int maxHotseatIconSpacePx;
194 private int inlineNavButtonsEndSpacing;
Adam Cohen2e6da152015-05-06 11:42:25 -0700195
Alex Chau3d2c0622022-09-01 21:28:14 +0100196 // Bottom sheets
197 public int bottomSheetTopPadding;
198 public int bottomSheetOpenDuration;
199 public int bottomSheetCloseDuration;
200 public float bottomSheetWorkspaceScale;
201 public float bottomSheetDepth;
202
Sunny Goyalc6205602015-05-21 20:46:33 -0700203 // All apps
Thales Lima85c942f2021-12-31 13:04:20 +0000204 public Point allAppsBorderSpacePx;
Alex Chaub8c22e12022-02-14 18:35:58 +0000205 public int allAppsShiftRange;
206 public int allAppsTopPadding;
Alex Chau3d2c0622022-09-01 21:28:14 +0100207 public int allAppsOpenDuration;
208 public int allAppsCloseDuration;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700209 public int allAppsCellHeightPx;
Samuel Fufaf1424a32019-10-04 15:15:19 -0700210 public int allAppsCellWidthPx;
Winson1f064272016-07-18 17:18:02 -0700211 public int allAppsIconSizePx;
212 public int allAppsIconDrawablePaddingPx;
sfufa@google.comde013292021-09-21 18:22:44 -0700213 public int allAppsLeftRightPadding;
Alex Chau27b39b92022-01-14 18:02:18 +0000214 public int allAppsLeftRightMargin;
Sunny Goyal19ff7282021-04-22 10:12:54 -0700215 public final int numShownAllAppsColumns;
Winson1f064272016-07-18 17:18:02 -0700216 public float allAppsIconTextSizePx;
217
Zak Cohen334efeb2021-03-19 16:42:07 -0700218 // Overview
Zak Cohen334efeb2021-03-19 16:42:07 -0700219 public int overviewTaskMarginPx;
Alex Chaudedbc8a2021-03-17 16:53:26 +0000220 public int overviewTaskIconSizePx;
Alex Chauac9df382021-08-02 19:08:41 +0100221 public int overviewTaskIconDrawableSizePx;
222 public int overviewTaskIconDrawableSizeGridPx;
Alex Chaudedbc8a2021-03-17 16:53:26 +0000223 public int overviewTaskThumbnailTopMarginPx;
Alex Chau19c6eca2022-03-10 20:12:56 +0000224 public final int overviewActionsHeight;
Alex Chaua2fc7642022-04-21 14:20:23 +0100225 public final int overviewActionsTopMarginPx;
Alex Chau1bf0fe12021-11-30 15:32:45 +0000226 public final int overviewActionsButtonSpacing;
Alex Chau5fd9d492021-07-22 17:27:11 +0100227 public int overviewPageSpacing;
228 public int overviewRowSpacing;
Alex Chau56bd2572021-11-03 18:48:18 +0000229 public int overviewGridSideMargin;
Zak Cohen334efeb2021-03-19 16:42:07 -0700230
Jeremy Sim0ac47082022-10-10 13:59:40 -0700231 // Split staging
232 public int splitPlaceholderInset;
233
Jon Miranda7ae64ff2016-11-21 16:18:46 -0800234 // Widgets
Sihua Mae04aa202022-07-18 12:43:56 -0700235 private final ViewScaleProvider mViewScaleProvider;
Jon Miranda7ae64ff2016-11-21 16:18:46 -0800236
Sunny Goyal47328fd2016-05-25 18:56:41 -0700237 // Drop Target
238 public int dropTargetBarSizePx;
Pat Manningde25c0d2022-04-05 19:11:26 +0100239 public int dropTargetBarTopMarginPx;
240 public int dropTargetBarBottomMarginPx;
Alex Chaua02eddc2021-04-29 00:36:06 +0100241 public int dropTargetDragPaddingPx;
242 public int dropTargetTextSizePx;
Pat Manningde25c0d2022-04-05 19:11:26 +0100243 public int dropTargetHorizontalPaddingPx;
244 public int dropTargetVerticalPaddingPx;
245 public int dropTargetGapPx;
Alex Chau5b019302022-05-23 10:42:25 +0100246 public int dropTargetButtonWorkspaceEdgeGapPx;
Adam Cohen4ae96ce2014-08-29 15:05:48 -0700247
Winson1f064272016-07-18 17:18:02 -0700248 // Insets
Sunny Goyal07b69292018-01-08 14:19:34 -0800249 private final Rect mInsets = new Rect();
250 public final Rect workspacePadding = new Rect();
Jon Miranda0bd63d12019-03-06 17:29:29 -0800251 // When true, nav bar is on the left side of the screen.
Sunny Goyal59d086c2018-05-07 17:31:40 -0700252 private boolean mIsSeascape;
Winson1f064272016-07-18 17:18:02 -0700253
Tony Wickhamf34bee82018-12-03 18:11:39 -0800254 // Notification dots
Sunny Goyal65190ae2022-08-02 14:16:26 -0700255 public final DotRenderer mDotRendererWorkSpace;
256 public final DotRenderer mDotRendererAllApps;
Tony Wickham9a8d11f2017-01-11 09:53:12 -0800257
Pierre Barbier de Reuille578deba2021-09-24 13:47:44 +0100258 // Taskbar
Tony Wickham15883892021-02-12 11:24:40 -0800259 public boolean isTaskbarPresent;
Tony Wickham635e1802021-07-22 14:28:04 -1000260 // Whether Taskbar will inset the bottom of apps by taskbarSize.
261 public boolean isTaskbarPresentInApps;
Tony Wickham15883892021-02-12 11:24:40 -0800262 public int taskbarSize;
Alex Chau85d664e2023-01-16 16:31:59 +0000263 public int transientTaskbarSize;
Alex Chau6a7d1e22022-01-20 19:54:17 +0000264 public int stashedTaskbarSize;
Alex Chau905e0f12022-11-14 21:55:37 +0000265 public int transientTaskbarMargin;
Tony Wickham15883892021-02-12 11:24:40 -0800266
Alex Chaua02eddc2021-04-29 00:36:06 +0100267 // DragController
268 public int flingToDeleteThresholdVelocity;
269
Vinit Nayak17c4b332021-08-05 12:54:58 -0700270 /** TODO: Once we fully migrate to staged split, remove "isMultiWindowMode" */
Sunny Goyal19ff7282021-04-22 10:12:54 -0700271 DeviceProfile(Context context, InvariantDeviceProfile inv, Info info, WindowBounds windowBounds,
Sunny Goyal65190ae2022-08-02 14:16:26 -0700272 SparseArray<DotRenderer> dotRendererCache, boolean isMultiWindowMode,
Alex Chauab800f72022-12-13 17:46:06 +0000273 boolean transposeLayoutWithOrientation, boolean isMultiDisplay, boolean isGestureMode,
Sihua Mae04aa202022-07-18 12:43:56 -0700274 @NonNull final ViewScaleProvider viewScaleProvider) {
Sunny Goyalfee35bb2015-05-11 11:38:19 -0700275
Adam Cohen2e6da152015-05-06 11:42:25 -0700276 this.inv = inv;
Sunny Goyal19ff7282021-04-22 10:12:54 -0700277 this.isLandscape = windowBounds.isLandscape();
Sunny Goyald70e75a2018-02-22 10:07:32 -0800278 this.isMultiWindowMode = isMultiWindowMode;
Jon Mirandae126d722021-02-25 10:45:20 -0500279 this.transposeLayoutWithOrientation = transposeLayoutWithOrientation;
Alex Chauab800f72022-12-13 17:46:06 +0000280 this.isMultiDisplay = isMultiDisplay;
Alex Chau6ed408f2022-03-04 12:58:05 +0000281 this.isGestureMode = isGestureMode;
Sunny Goyal19ff7282021-04-22 10:12:54 -0700282 windowX = windowBounds.bounds.left;
283 windowY = windowBounds.bounds.top;
Sunny Goyal187b16c2022-03-01 16:53:23 -0800284 this.rotationHint = windowBounds.rotationHint;
Alex Chaue0227552022-04-06 19:44:43 +0100285 mInsets.set(windowBounds.insets);
Winson Chungb3800242013-10-24 11:01:54 -0700286
Jon Mirandae126d722021-02-25 10:45:20 -0500287 isScalableGrid = inv.isScalable && !isVerticalBarLayout() && !isMultiWindowMode;
Alex Chaudfc8ddf2022-01-25 11:26:25 +0000288 // Determine device posture.
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700289 mInfo = info;
Alex Chau29983072021-11-19 15:14:20 +0000290 isTablet = info.isTablet(windowBounds);
Sunny Goyal19ff7282021-04-22 10:12:54 -0700291 isPhone = !isTablet;
Alex Chauab800f72022-12-13 17:46:06 +0000292 isTwoPanels = isTablet && isMultiDisplay;
Vinit Nayak58c27cc2022-02-16 17:42:21 -0800293 isTaskbarPresent = isTablet && ApiWrapper.TASKBAR_DRAWN_IN_PROCESS;
Adam Cohen2e6da152015-05-06 11:42:25 -0700294
Alex Chaudfc8ddf2022-01-25 11:26:25 +0000295 // Some more constants.
Alex Chau635b3ab2022-01-26 16:49:10 +0000296 context = getContext(context, info, isVerticalBarLayout() || (isTablet && isLandscape)
Brandon Dayauon07ca8842022-04-27 10:52:28 -0700297 ? Configuration.ORIENTATION_LANDSCAPE
298 : Configuration.ORIENTATION_PORTRAIT,
Alex Chaua6907dc2022-03-18 15:24:07 +0000299 windowBounds);
Sunny Goyal1890f672020-04-30 12:28:00 -0700300 final Resources res = context.getResources();
Alex Chaudfc8ddf2022-01-25 11:26:25 +0000301 mMetrics = res.getDisplayMetrics();
302
303 // Determine sizes.
304 widthPx = windowBounds.bounds.width();
305 heightPx = windowBounds.bounds.height();
306 availableWidthPx = windowBounds.availableSize.x;
Thales Limab8c05952022-05-23 16:58:38 +0100307 availableHeightPx = windowBounds.availableSize.y;
Alex Chaudfc8ddf2022-01-25 11:26:25 +0000308
309 aspectRatio = ((float) Math.max(widthPx, heightPx)) / Math.min(widthPx, heightPx);
310 boolean isTallDevice = Float.compare(aspectRatio, TALL_DEVICE_ASPECT_RATIO_THRESHOLD) >= 0;
311 mQsbCenterFactor = res.getFloat(R.dimen.qsb_center_factor);
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700312
Thales Lima83bedbf2021-10-05 17:47:39 +0100313 if (isTwoPanels) {
314 if (isLandscape) {
Thales Lima12d0eff2022-03-25 17:06:11 +0000315 mTypeIndex = INDEX_TWO_PANEL_LANDSCAPE;
Thales Lima83bedbf2021-10-05 17:47:39 +0100316 } else {
Thales Lima12d0eff2022-03-25 17:06:11 +0000317 mTypeIndex = INDEX_TWO_PANEL_PORTRAIT;
Thales Lima83bedbf2021-10-05 17:47:39 +0100318 }
319 } else {
320 if (isLandscape) {
Thales Lima12d0eff2022-03-25 17:06:11 +0000321 mTypeIndex = INDEX_LANDSCAPE;
Thales Lima83bedbf2021-10-05 17:47:39 +0100322 } else {
Thales Lima12d0eff2022-03-25 17:06:11 +0000323 mTypeIndex = INDEX_DEFAULT;
Thales Lima83bedbf2021-10-05 17:47:39 +0100324 }
325 }
326
Tony Wickham15883892021-02-12 11:24:40 -0800327 if (isTaskbarPresent) {
Alex Chau85d664e2023-01-16 16:31:59 +0000328 transientTaskbarSize = res.getDimensionPixelSize(R.dimen.transient_taskbar_size);
329 transientTaskbarMargin = res.getDimensionPixelSize(R.dimen.transient_taskbar_margin);
Jon Miranda7e819502022-11-03 10:56:32 -0700330 if (DisplayController.isTransientTaskbar(context)) {
Alex Chau85d664e2023-01-16 16:31:59 +0000331 taskbarSize = transientTaskbarSize;
Jon Miranda7e819502022-11-03 10:56:32 -0700332 stashedTaskbarSize =
333 res.getDimensionPixelSize(R.dimen.transient_taskbar_stashed_size);
334 } else {
335 taskbarSize = res.getDimensionPixelSize(R.dimen.taskbar_size);
336 stashedTaskbarSize = res.getDimensionPixelSize(R.dimen.taskbar_stashed_size);
337 }
Tony Wickham15883892021-02-12 11:24:40 -0800338 }
Tony Wickham15883892021-02-12 11:24:40 -0800339
Winson Chungb3800242013-10-24 11:01:54 -0700340 edgeMarginPx = res.getDimensionPixelSize(R.dimen.dynamic_grid_edge_margin);
Alex Chau0c4e11b2022-07-08 18:41:36 +0100341 workspaceContentScale = res.getFloat(R.dimen.workspace_content_scale);
Sunny Goyal58fa4b62019-03-22 16:23:25 -0700342
Thales Limad90faab2021-09-21 17:18:47 +0100343 desiredWorkspaceHorizontalMarginPx = getHorizontalMarginPx(inv, res);
344 desiredWorkspaceHorizontalMarginOriginalPx = desiredWorkspaceHorizontalMarginPx;
Alex Chau51da2192022-05-20 13:32:10 +0100345 gridVisualizationPaddingX = res.getDimensionPixelSize(
346 R.dimen.grid_visualization_horizontal_cell_spacing);
347 gridVisualizationPaddingY = res.getDimensionPixelSize(
348 R.dimen.grid_visualization_vertical_cell_spacing);
Samuel Fufaee9aff92021-04-05 13:30:40 -0500349
Alex Chaue0227552022-04-06 19:44:43 +0100350 bottomSheetTopPadding = mInsets.top // statusbar height
Andras Kloczl142b0542022-03-09 21:26:02 +0000351 + res.getDimensionPixelSize(R.dimen.bottom_sheet_extra_top_padding)
352 + (isTablet ? 0 : edgeMarginPx); // phones need edgeMarginPx additional padding
Alex Chau3d2c0622022-09-01 21:28:14 +0100353 bottomSheetOpenDuration = res.getInteger(R.integer.config_bottomSheetOpenDuration);
354 bottomSheetCloseDuration = res.getInteger(R.integer.config_bottomSheetCloseDuration);
355 if (isTablet) {
356 bottomSheetWorkspaceScale = workspaceContentScale;
Alex Chauab800f72022-12-13 17:46:06 +0000357 if (isMultiDisplay && !ENABLE_MULTI_DISPLAY_PARTIAL_DEPTH.get()) {
358 // TODO(b/259893832): Revert to use maxWallpaperScale to calculate bottomSheetDepth
359 // when screen recorder bug is fixed.
360 bottomSheetDepth = 1f;
361 } else {
362 // The goal is to set wallpaper to zoom at workspaceContentScale when in AllApps.
363 // When depth is 0, wallpaper zoom is set to maxWallpaperScale.
364 // When depth is 1, wallpaper zoom is set to 1.
365 // For depth to achieve zoom set to maxWallpaperScale * workspaceContentScale:
366 float maxWallpaperScale = res.getFloat(R.dimen.config_wallpaperMaxScale);
367 bottomSheetDepth = Utilities.mapToRange(maxWallpaperScale * workspaceContentScale,
368 maxWallpaperScale, 1f, 0f, 1f, LINEAR);
369 }
Alex Chau3d2c0622022-09-01 21:28:14 +0100370 } else {
371 bottomSheetWorkspaceScale = 1f;
372 bottomSheetDepth = 0f;
373 }
Andras Kloczl142b0542022-03-09 21:26:02 +0000374
Jon Mirandae126d722021-02-25 10:45:20 -0500375 folderLabelTextScale = res.getFloat(R.dimen.folder_label_text_scale);
Thales Limab35faed2022-09-05 16:30:01 -0300376
377 if (inv.folderStyle != INVALID_RESOURCE_HANDLE) {
378 TypedArray folderStyle = context.obtainStyledAttributes(inv.folderStyle,
379 R.styleable.FolderDisplayStyle);
380 // These are re-set in #updateFolderCellSize if the grid is not scalable
381 folderCellHeightPx = folderStyle.getDimensionPixelSize(
382 R.styleable.FolderDisplayStyle_folderCellHeight, 0);
383 folderCellWidthPx = folderStyle.getDimensionPixelSize(
384 R.styleable.FolderDisplayStyle_folderCellWidth, 0);
385
386 folderContentPaddingTop = folderStyle.getDimensionPixelSize(
387 R.styleable.FolderDisplayStyle_folderTopPadding, 0);
388 folderCellLayoutBorderSpacePx = folderStyle.getDimensionPixelSize(
389 R.styleable.FolderDisplayStyle_folderBorderSpace, 0);
390 folderFooterHeightPx = folderStyle.getDimensionPixelSize(
391 R.styleable.FolderDisplayStyle_folderFooterHeight, 0);
392 folderStyle.recycle();
393 } else {
394 folderCellLayoutBorderSpacePx = 0;
395 folderFooterHeightPx = 0;
396 folderContentPaddingTop = res.getDimensionPixelSize(R.dimen.folder_top_padding_default);
397 }
Jon Mirandae126d722021-02-25 10:45:20 -0500398
Thales Lima78d00ad2021-09-30 11:29:06 +0100399 cellLayoutBorderSpacePx = getCellLayoutBorderSpace(inv);
Thales Limab35faed2022-09-05 16:30:01 -0300400 cellLayoutBorderSpaceOriginalPx = new Point(cellLayoutBorderSpacePx);
Thales Lima85c942f2021-12-31 13:04:20 +0000401 allAppsBorderSpacePx = new Point(
Thales Limabb7d3882021-12-22 12:56:29 +0000402 pxFromDp(inv.allAppsBorderSpaces[mTypeIndex].x, mMetrics),
403 pxFromDp(inv.allAppsBorderSpaces[mTypeIndex].y, mMetrics));
Jon Mirandae126d722021-02-25 10:45:20 -0500404
Tony Wickham5edf9e22020-03-27 20:06:52 -0700405 workspacePageIndicatorHeight = res.getDimensionPixelSize(
406 R.dimen.workspace_page_indicator_height);
407 mWorkspacePageIndicatorOverlapWorkspace =
408 res.getDimensionPixelSize(R.dimen.workspace_page_indicator_overlap_workspace);
Sunny Goyal58fa4b62019-03-22 16:23:25 -0700409
Winson Chungb3800242013-10-24 11:01:54 -0700410 iconDrawablePaddingOriginalPx =
411 res.getDimensionPixelSize(R.dimen.dynamic_grid_icon_drawable_padding);
Alex Chaua02eddc2021-04-29 00:36:06 +0100412
Sunny Goyal47328fd2016-05-25 18:56:41 -0700413 dropTargetBarSizePx = res.getDimensionPixelSize(R.dimen.dynamic_grid_drop_target_size);
Pat Manningde25c0d2022-04-05 19:11:26 +0100414 dropTargetBarTopMarginPx = res.getDimensionPixelSize(R.dimen.drop_target_top_margin);
415 dropTargetBarBottomMarginPx = res.getDimensionPixelSize(R.dimen.drop_target_bottom_margin);
Alex Chaua02eddc2021-04-29 00:36:06 +0100416 dropTargetDragPaddingPx = res.getDimensionPixelSize(R.dimen.drop_target_drag_padding);
417 dropTargetTextSizePx = res.getDimensionPixelSize(R.dimen.drop_target_text_size);
Pat Manningde25c0d2022-04-05 19:11:26 +0100418 dropTargetHorizontalPaddingPx = res.getDimensionPixelSize(
419 R.dimen.drop_target_button_drawable_horizontal_padding);
420 dropTargetVerticalPaddingPx = res.getDimensionPixelSize(
421 R.dimen.drop_target_button_drawable_vertical_padding);
422 dropTargetGapPx = res.getDimensionPixelSize(R.dimen.drop_target_button_gap);
Alex Chau5b019302022-05-23 10:42:25 +0100423 dropTargetButtonWorkspaceEdgeGapPx = res.getDimensionPixelSize(
424 R.dimen.drop_target_button_workspace_edge_gap);
Alex Chaua02eddc2021-04-29 00:36:06 +0100425
Alex Chau906d8822022-05-23 10:42:25 +0100426 workspaceSpringLoadedMinNextPageVisiblePx = res.getDimensionPixelSize(
427 R.dimen.dynamic_grid_spring_loaded_min_next_space_visible);
Sunny Goyald5190522017-04-24 03:06:54 -0700428
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700429 workspaceCellPaddingXPx = res.getDimensionPixelSize(R.dimen.dynamic_grid_cell_padding_x);
Jon Miranda09660722017-06-14 14:20:14 -0700430
Thales Limaa1012902022-01-13 17:58:42 +0000431 hotseatQsbHeight = res.getDimensionPixelSize(R.dimen.qsb_widget_height);
Thales Limab8c05952022-05-23 16:58:38 +0100432 hotseatQsbShadowHeight = res.getDimensionPixelSize(R.dimen.qsb_shadow_height);
433 hotseatQsbVisualHeight = hotseatQsbHeight - 2 * hotseatQsbShadowHeight;
434
Thales Lima12d0eff2022-03-25 17:06:11 +0000435 // Whether QSB might be inline in appropriate orientation (e.g. landscape).
436 boolean canQsbInline = (isTwoPanels ? inv.inlineQsb[INDEX_TWO_PANEL_PORTRAIT]
437 || inv.inlineQsb[INDEX_TWO_PANEL_LANDSCAPE]
438 : inv.inlineQsb[INDEX_DEFAULT] || inv.inlineQsb[INDEX_LANDSCAPE])
439 && hotseatQsbHeight > 0;
Thales Lima6a590062022-11-22 15:52:49 +0000440 isQsbInline = isScalableGrid && inv.inlineQsb[mTypeIndex] && canQsbInline;
Alex Chau6ed408f2022-03-04 12:58:05 +0000441
Thales Lima425f6822022-05-10 13:44:58 -0300442 areNavButtonsInline = isTaskbarPresent && !isGestureMode;
Thales Lima9938c2f2022-07-25 14:38:16 +0100443 numShownHotseatIcons =
444 isTwoPanels ? inv.numDatabaseHotseatIcons : inv.numShownHotseatIcons;
Alex Chau6ed408f2022-03-04 12:58:05 +0000445
Sunny Goyal19ff7282021-04-22 10:12:54 -0700446 numShownAllAppsColumns =
447 isTwoPanels ? inv.numDatabaseAllAppsColumns : inv.numAllAppsColumns;
Thales Limab8c05952022-05-23 16:58:38 +0100448
449 int hotseatBarBottomSpace = pxFromDp(inv.hotseatBarBottomSpace[mTypeIndex], mMetrics);
450 int minQsbMargin = res.getDimensionPixelSize(R.dimen.min_qsb_margin);
451 hotseatQsbSpace = pxFromDp(inv.hotseatQsbSpace[mTypeIndex], mMetrics);
452 // Have a little space between the inset and the QSB
453 if (mInsets.bottom + minQsbMargin > hotseatBarBottomSpace) {
454 int availableSpace = hotseatQsbSpace - (mInsets.bottom - hotseatBarBottomSpace);
455
456 // Only change the spaces if there is space
457 if (availableSpace > 0) {
458 // Make sure there is enough space between hotseat/QSB and QSB/navBar
459 if (availableSpace < minQsbMargin * 2) {
460 minQsbMargin = availableSpace / 2;
461 hotseatQsbSpace = minQsbMargin;
462 } else {
463 hotseatQsbSpace -= minQsbMargin;
464 }
465 }
466 hotseatBarBottomSpacePx = mInsets.bottom + minQsbMargin;
467
Thales Limaa1012902022-01-13 17:58:42 +0000468 } else {
Thales Limab8c05952022-05-23 16:58:38 +0100469 hotseatBarBottomSpacePx = hotseatBarBottomSpace;
Thales Limaa1012902022-01-13 17:58:42 +0000470 }
Thales Lima425f6822022-05-10 13:44:58 -0300471
Pat Manningde25c0d2022-04-05 19:11:26 +0100472 springLoadedHotseatBarTopMarginPx = res.getDimensionPixelSize(
473 R.dimen.spring_loaded_hotseat_top_margin);
Tony Wickham1eeffbe2018-06-12 15:01:15 -0700474 hotseatBarSidePaddingEndPx =
Sunny Goyal228153d2018-01-04 15:35:22 -0800475 res.getDimensionPixelSize(R.dimen.dynamic_grid_hotseat_side_padding);
Jon Miranda3f411e72019-05-16 17:15:16 -0700476 // Add a bit of space between nav bar and hotseat in vertical bar layout.
Tony Wickham5edf9e22020-03-27 20:06:52 -0700477 hotseatBarSidePaddingStartPx = isVerticalBarLayout() ? workspacePageIndicatorHeight : 0;
Thales Limab8c05952022-05-23 16:58:38 +0100478 updateHotseatSizes(pxFromDp(inv.iconSize[INDEX_DEFAULT], mMetrics));
Vinit Nayak8a3d0552022-08-05 10:43:29 -0700479 if (areNavButtonsInline && !isPhone) {
Thales Lima6a590062022-11-22 15:52:49 +0000480 inlineNavButtonsEndSpacing = res.getDimensionPixelSize(inv.inlineNavButtonsEndSpacing);
Pat Manning26f70f72022-07-07 13:50:39 +0100481 /*
482 * 3 nav buttons +
Vinit Nayakc7293172022-07-18 16:41:50 -0700483 * Spacing between nav buttons +
Thales Lima6a590062022-11-22 15:52:49 +0000484 * Space at the end for contextual buttons
Pat Manning26f70f72022-07-07 13:50:39 +0100485 */
486 hotseatBarEndOffset = 3 * res.getDimensionPixelSize(R.dimen.taskbar_nav_buttons_size)
Vinit Nayakc7293172022-07-18 16:41:50 -0700487 + 2 * res.getDimensionPixelSize(R.dimen.taskbar_button_space_inbetween)
Thales Lima6a590062022-11-22 15:52:49 +0000488 + inlineNavButtonsEndSpacing;
Pat Manning26f70f72022-07-07 13:50:39 +0100489 } else {
Thales Lima6a590062022-11-22 15:52:49 +0000490 inlineNavButtonsEndSpacing = 0;
Pat Manning26f70f72022-07-07 13:50:39 +0100491 hotseatBarEndOffset = 0;
492 }
Jon Miranda8bdb2222021-06-23 18:10:10 -0700493
Alex Chau635b3ab2022-01-26 16:49:10 +0000494 overviewTaskMarginPx = res.getDimensionPixelSize(R.dimen.overview_task_margin);
Alex Chau5fd9d492021-07-22 17:27:11 +0100495 overviewTaskIconSizePx = res.getDimensionPixelSize(R.dimen.task_thumbnail_icon_size);
Alex Chauac9df382021-08-02 19:08:41 +0100496 overviewTaskIconDrawableSizePx =
497 res.getDimensionPixelSize(R.dimen.task_thumbnail_icon_drawable_size);
498 overviewTaskIconDrawableSizeGridPx =
499 res.getDimensionPixelSize(R.dimen.task_thumbnail_icon_drawable_size_grid);
Jeremy Sim1cfe6d42022-07-15 14:40:38 -0700500 overviewTaskThumbnailTopMarginPx = overviewTaskIconSizePx + overviewTaskMarginPx;
Jeremy Sim3c2c3f12022-05-16 20:37:43 -0700501 overviewActionsTopMarginPx = res.getDimensionPixelSize(R.dimen.overview_actions_top_margin);
Alex Chau635b3ab2022-01-26 16:49:10 +0000502 overviewPageSpacing = res.getDimensionPixelSize(R.dimen.overview_page_spacing);
503 overviewActionsButtonSpacing = res.getDimensionPixelSize(
504 R.dimen.overview_actions_button_spacing);
Alex Chau19c6eca2022-03-10 20:12:56 +0000505 overviewActionsHeight = res.getDimensionPixelSize(R.dimen.overview_actions_height);
Jeremy Sim1cfe6d42022-07-15 14:40:38 -0700506 overviewRowSpacing = res.getDimensionPixelSize(R.dimen.overview_grid_row_spacing);
Alex Chau635b3ab2022-01-26 16:49:10 +0000507 overviewGridSideMargin = res.getDimensionPixelSize(R.dimen.overview_grid_side_margin);
Zak Cohen334efeb2021-03-19 16:42:07 -0700508
Jeremy Sim0ac47082022-10-10 13:59:40 -0700509 splitPlaceholderInset = res.getDimensionPixelSize(R.dimen.split_placeholder_inset);
510
Jon Miranda2ed276e2017-06-29 11:36:34 -0700511 // Calculate all of the remaining variables.
Jon Miranda58561d42021-03-17 10:51:54 -0400512 extraSpace = updateAvailableDimensions(res);
Jon Miranda80cddbc2021-07-22 13:51:16 -0700513
Jon Miranda2ed276e2017-06-29 11:36:34 -0700514 // Now that we have all of the variables calculated, we can tune certain sizes.
Thales Limaae0d7ef2022-11-16 15:53:43 +0000515 if (isScalableGrid && inv.devicePaddingId != INVALID_RESOURCE_HANDLE) {
Jon Mirandac9e69fa2021-03-22 17:13:34 -0400516 // Paddings were created assuming no scaling, so we first unscale the extra space.
Jon Mirandaab3c6812021-06-28 15:42:28 -0700517 int unscaledExtraSpace = (int) (extraSpace / cellScaleToFit);
Thales Limaae0d7ef2022-11-16 15:53:43 +0000518 DevicePaddings devicePaddings = new DevicePaddings(context, inv.devicePaddingId);
519 DevicePadding padding = devicePaddings.getDevicePadding(unscaledExtraSpace);
Thales Lima171ee662022-11-22 15:52:49 +0000520 maxEmptySpace = padding.getMaxEmptySpacePx();
Jon Miranda228877d2021-02-09 11:05:00 -0500521
Jon Mirandac9e69fa2021-03-22 17:13:34 -0400522 int paddingWorkspaceTop = padding.getWorkspaceTopPadding(unscaledExtraSpace);
523 int paddingWorkspaceBottom = padding.getWorkspaceBottomPadding(unscaledExtraSpace);
524 int paddingHotseatBottom = padding.getHotseatBottomPadding(unscaledExtraSpace);
525
Jon Mirandaab3c6812021-06-28 15:42:28 -0700526 workspaceTopPadding = Math.round(paddingWorkspaceTop * cellScaleToFit);
527 workspaceBottomPadding = Math.round(paddingWorkspaceBottom * cellScaleToFit);
Jon Miranda2ed276e2017-06-29 11:36:34 -0700528 }
Pat Manning08610ca2022-04-05 21:03:16 +0100529
530 int cellLayoutPadding =
531 isTwoPanels ? cellLayoutBorderSpacePx.x / 2 : res.getDimensionPixelSize(
532 R.dimen.cell_layout_padding);
533 cellLayoutPaddingPx = new Rect(cellLayoutPadding, cellLayoutPadding, cellLayoutPadding,
534 cellLayoutPadding);
Sunny Goyal07b69292018-01-08 14:19:34 -0800535 updateWorkspacePadding();
Tony Wickham1237df02017-02-24 08:59:36 -0800536
Thales Lima6a590062022-11-22 15:52:49 +0000537 minHotseatIconSpacePx = res.getDimensionPixelSize(R.dimen.min_hotseat_icon_space);
538 minHotseatQsbWidthPx = res.getDimensionPixelSize(R.dimen.min_hotseat_qsb_width);
539 maxHotseatIconSpacePx = areNavButtonsInline
540 ? res.getDimensionPixelSize(R.dimen.max_hotseat_icon_space) : Integer.MAX_VALUE;
Thales Lima425f6822022-05-10 13:44:58 -0300541 // Hotseat and QSB width depends on updated cellSize and workspace padding
Thales Lima6a590062022-11-22 15:52:49 +0000542 recalculateHotseatWidthAndBorderSpace();
Alex Chau206ede92022-08-01 17:46:12 +0100543
544 // AllApps height calculation depends on updated cellSize
545 if (isTablet) {
546 int collapseHandleHeight =
547 res.getDimensionPixelOffset(R.dimen.bottom_sheet_handle_area_height);
548 int contentHeight = heightPx - collapseHandleHeight - hotseatQsbHeight;
549 int targetContentHeight = (int) (allAppsCellHeightPx * ALL_APPS_TABLET_MAX_ROWS);
550 allAppsTopPadding = Math.max(mInsets.top, contentHeight - targetContentHeight);
551 allAppsShiftRange = heightPx - allAppsTopPadding;
552 } else {
553 allAppsTopPadding = 0;
554 allAppsShiftRange =
555 res.getDimensionPixelSize(R.dimen.all_apps_starting_vertical_translate);
556 }
Alex Chau3d2c0622022-09-01 21:28:14 +0100557 allAppsOpenDuration = res.getInteger(R.integer.config_allAppsOpenDuration);
558 allAppsCloseDuration = res.getInteger(R.integer.config_allAppsCloseDuration);
Thales Lima425f6822022-05-10 13:44:58 -0300559
Alex Chaua02eddc2021-04-29 00:36:06 +0100560 flingToDeleteThresholdVelocity = res.getDimensionPixelSize(
561 R.dimen.drag_flingToDeleteMinVelocity);
562
Sihua Mae04aa202022-07-18 12:43:56 -0700563 mViewScaleProvider = viewScaleProvider;
564
Tony Wickham1237df02017-02-24 08:59:36 -0800565 // This is done last, after iconSizePx is calculated above.
Sunny Goyal65190ae2022-08-02 14:16:26 -0700566 mDotRendererWorkSpace = createDotRenderer(iconSizePx, dotRendererCache);
567 mDotRendererAllApps = createDotRenderer(allAppsIconSizePx, dotRendererCache);
568 }
569
570 private static DotRenderer createDotRenderer(
571 int size, @NonNull SparseArray<DotRenderer> cache) {
572 DotRenderer renderer = cache.get(size);
573 if (renderer == null) {
574 renderer = new DotRenderer(size, getShapePath(DEFAULT_DOT_SIZE), DEFAULT_DOT_SIZE);
575 cache.put(size, renderer);
576 }
577 return renderer;
Adam Cohen63f1ec02014-08-12 09:23:13 -0700578 }
579
Thales Lima425f6822022-05-10 13:44:58 -0300580 /**
581 * QSB width is always calculated because when in 3 button nav the width doesn't follow the
582 * width of the hotseat.
583 */
Thales Lima9938c2f2022-07-25 14:38:16 +0100584 private int calculateQsbWidth(int hotseatBorderSpace) {
Thales Lima425f6822022-05-10 13:44:58 -0300585 if (isQsbInline) {
Alex Chau906d8822022-05-23 10:42:25 +0100586 int columns = getPanelCount() * inv.numColumns;
Thales Lima425f6822022-05-10 13:44:58 -0300587 return getIconToIconWidthForColumns(columns)
588 - iconSizePx * numShownHotseatIcons
589 - hotseatBorderSpace * numShownHotseatIcons;
590 } else {
591 int columns = inv.hotseatColumnSpan[mTypeIndex];
592 return getIconToIconWidthForColumns(columns);
593 }
594 }
Thales Lima2903a622022-03-17 13:52:19 +0000595
Thales Lima425f6822022-05-10 13:44:58 -0300596 private int getIconToIconWidthForColumns(int columns) {
597 return columns * getCellSize().x
598 + (columns - 1) * cellLayoutBorderSpacePx.x
Thales Lima1e8b45f2022-08-25 11:50:59 -0400599 - getCellHorizontalSpace();
Thales Limaa1012902022-01-13 17:58:42 +0000600 }
601
Thales Limad90faab2021-09-21 17:18:47 +0100602 private int getHorizontalMarginPx(InvariantDeviceProfile idp, Resources res) {
603 if (isVerticalBarLayout()) {
604 return 0;
605 }
606
Thales Lima83bedbf2021-10-05 17:47:39 +0100607 return isScalableGrid
608 ? pxFromDp(idp.horizontalMargin[mTypeIndex], mMetrics)
609 : res.getDimensionPixelSize(R.dimen.dynamic_grid_left_right_margin);
Thales Limad90faab2021-09-21 17:18:47 +0100610 }
611
Thales Limab8c05952022-05-23 16:58:38 +0100612 /** Updates hotseatCellHeightPx and hotseatBarSizePx */
613 private void updateHotseatSizes(int hotseatIconSizePx) {
Jon Miranda92c1b5d2021-07-20 13:57:16 -0700614 // Ensure there is enough space for folder icons, which have a slightly larger radius.
615 hotseatCellHeightPx = (int) Math.ceil(hotseatIconSizePx * ICON_OVERLAP_FACTOR);
Thales Limab8c05952022-05-23 16:58:38 +0100616
Jon Miranda0d284852021-06-22 14:50:55 -0700617 if (isVerticalBarLayout()) {
618 hotseatBarSizePx = hotseatIconSizePx + hotseatBarSidePaddingStartPx
619 + hotseatBarSidePaddingEndPx;
Thales Limab8c05952022-05-23 16:58:38 +0100620 } else if (isQsbInline) {
621 hotseatBarSizePx = Math.max(hotseatIconSizePx, hotseatQsbVisualHeight)
622 + hotseatBarBottomSpacePx;
Jon Miranda0d284852021-06-22 14:50:55 -0700623 } else {
Thales Limab8c05952022-05-23 16:58:38 +0100624 hotseatBarSizePx = hotseatIconSizePx
625 + hotseatQsbSpace
626 + hotseatQsbVisualHeight
627 + hotseatBarBottomSpacePx;
Jon Miranda0d284852021-06-22 14:50:55 -0700628 }
629 }
630
Thales Lima6a590062022-11-22 15:52:49 +0000631 /**
632 * Calculates the width of the hotseat, changing spaces between the icons and removing icons if
633 * necessary.
634 */
635 public void recalculateHotseatWidthAndBorderSpace() {
636 if (!isScalableGrid) return;
637
638 int columns = inv.hotseatColumnSpan[mTypeIndex];
639 float hotseatWidthPx = getIconToIconWidthForColumns(columns);
640 hotseatBorderSpace = calculateHotseatBorderSpace(hotseatWidthPx, /* numExtraBorder= */ 0);
Thales Lima9938c2f2022-07-25 14:38:16 +0100641 hotseatQsbWidth = calculateQsbWidth(hotseatBorderSpace);
Thales Lima6a590062022-11-22 15:52:49 +0000642 // Spaces should be correct when the nav buttons are not inline
Thales Lima9938c2f2022-07-25 14:38:16 +0100643 if (!areNavButtonsInline) {
644 return;
645 }
646
Thales Lima6a590062022-11-22 15:52:49 +0000647 // The side space with inline buttons should be what is defined in InvariantDeviceProfile
648 int sideSpace = inlineNavButtonsEndSpacing;
649 int maxHotseatWidth = availableWidthPx - sideSpace - hotseatBarEndOffset;
650 int maxHotseatIconsWidth = maxHotseatWidth - (isQsbInline ? hotseatQsbWidth : 0);
651 hotseatBorderSpace = calculateHotseatBorderSpace(maxHotseatIconsWidth,
652 (isQsbInline ? 1 : 0) + /* border between nav buttons and first icon */ 1);
Thales Lima9938c2f2022-07-25 14:38:16 +0100653
Thales Lima6a590062022-11-22 15:52:49 +0000654 if (hotseatBorderSpace >= minHotseatIconSpacePx) {
Thales Lima9938c2f2022-07-25 14:38:16 +0100655 return;
656 }
657
658 // Border space can't be less than the minimum
Thales Lima6a590062022-11-22 15:52:49 +0000659 hotseatBorderSpace = minHotseatIconSpacePx;
660 int requiredWidth = getHotseatRequiredWidth();
Thales Lima9938c2f2022-07-25 14:38:16 +0100661
662 // If there is an inline qsb, change its size
663 if (isQsbInline) {
664 hotseatQsbWidth -= requiredWidth - maxHotseatWidth;
Thales Lima6a590062022-11-22 15:52:49 +0000665 if (hotseatQsbWidth >= minHotseatQsbWidthPx) {
Thales Lima9938c2f2022-07-25 14:38:16 +0100666 return;
667 }
668
669 // QSB can't be less than the minimum
Thales Lima6a590062022-11-22 15:52:49 +0000670 hotseatQsbWidth = minHotseatQsbWidthPx;
Thales Lima9938c2f2022-07-25 14:38:16 +0100671 }
672
Thales Lima6a590062022-11-22 15:52:49 +0000673 maxHotseatIconsWidth = maxHotseatWidth - (isQsbInline ? hotseatQsbWidth : 0);
674
Thales Lima9938c2f2022-07-25 14:38:16 +0100675 // If it still doesn't fit, start removing icons
676 do {
677 numShownHotseatIcons--;
Thales Lima6a590062022-11-22 15:52:49 +0000678 hotseatBorderSpace = calculateHotseatBorderSpace(maxHotseatIconsWidth,
679 (isQsbInline ? 1 : 0) + /* border between nav buttons and first icon */ 1);
680 } while (hotseatBorderSpace < minHotseatIconSpacePx && numShownHotseatIcons > 1);
Thales Lima9938c2f2022-07-25 14:38:16 +0100681
Thales Lima9938c2f2022-07-25 14:38:16 +0100682 }
683
Thales Lima78d00ad2021-09-30 11:29:06 +0100684 private Point getCellLayoutBorderSpace(InvariantDeviceProfile idp) {
Thales Lima080d8902022-03-28 15:30:29 +0100685 return getCellLayoutBorderSpace(idp, 1f);
Thales Lima080d8902022-03-28 15:30:29 +0100686 }
687
688 private Point getCellLayoutBorderSpace(InvariantDeviceProfile idp, float scale) {
Thales Lima78d00ad2021-09-30 11:29:06 +0100689 if (!isScalableGrid) {
690 return new Point(0, 0);
691 }
692
Thales Lima080d8902022-03-28 15:30:29 +0100693 int horizontalSpacePx = pxFromDp(idp.borderSpaces[mTypeIndex].x, mMetrics, scale);
694 int verticalSpacePx = pxFromDp(idp.borderSpaces[mTypeIndex].y, mMetrics, scale);
Thales Lima78d00ad2021-09-30 11:29:06 +0100695
696 return new Point(horizontalSpacePx, verticalSpacePx);
697 }
698
Sunny Goyal69a8eec2021-07-22 10:02:50 -0700699 public Info getDisplayInfo() {
700 return mInfo;
701 }
702
Jon Miranda611dba42021-03-02 14:12:13 -0500703 /**
704 * We inset the widget padding added by the system and instead rely on the border spacing
705 * between cells to create reliable consistency between widgets
706 */
707 public boolean shouldInsetWidgets() {
708 Rect widgetPadding = inv.defaultWidgetPadding;
709
Jon Miranda49811182021-06-03 09:52:40 -0700710 // Check all sides to ensure that the widget won't overlap into another cell, or into
711 // status bar.
712 return workspaceTopPadding > widgetPadding.top
Thales Lima78d00ad2021-09-30 11:29:06 +0100713 && cellLayoutBorderSpacePx.x > widgetPadding.left
714 && cellLayoutBorderSpacePx.y > widgetPadding.top
715 && cellLayoutBorderSpacePx.x > widgetPadding.right
716 && cellLayoutBorderSpacePx.y > widgetPadding.bottom;
Jon Miranda611dba42021-03-02 14:12:13 -0500717 }
Jon Mirandae126d722021-02-25 10:45:20 -0500718
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700719 public Builder toBuilder(Context context) {
Sunny Goyal187b16c2022-03-01 16:53:23 -0800720 WindowBounds bounds = new WindowBounds(
721 widthPx, heightPx, availableWidthPx, availableHeightPx, rotationHint);
Sunny Goyal19ff7282021-04-22 10:12:54 -0700722 bounds.bounds.offsetTo(windowX, windowY);
Alex Chaue0227552022-04-06 19:44:43 +0100723 bounds.insets.set(mInsets);
Sunny Goyal65190ae2022-08-02 14:16:26 -0700724
725 SparseArray<DotRenderer> dotRendererCache = new SparseArray<>();
726 dotRendererCache.put(iconSizePx, mDotRendererWorkSpace);
727 dotRendererCache.put(allAppsIconSizePx, mDotRendererAllApps);
728
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700729 return new Builder(context, inv, mInfo)
Sunny Goyal19ff7282021-04-22 10:12:54 -0700730 .setWindowBounds(bounds)
Alex Chauab800f72022-12-13 17:46:06 +0000731 .setIsMultiDisplay(isMultiDisplay)
Alex Chau6ed408f2022-03-04 12:58:05 +0000732 .setMultiWindowMode(isMultiWindowMode)
Sunny Goyal65190ae2022-08-02 14:16:26 -0700733 .setDotRendererCache(dotRendererCache)
Alex Chau6ed408f2022-03-04 12:58:05 +0000734 .setGestureMode(isGestureMode);
Sunny Goyal1a52ef52018-01-11 10:15:03 -0800735 }
736
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700737 public DeviceProfile copy(Context context) {
738 return toBuilder(context).build();
739 }
740
741 /**
742 * TODO: Move this to the builder as part of setMultiWindowMode
743 */
Sunny Goyalb46703d2020-05-27 17:52:03 -0700744 public DeviceProfile getMultiWindowProfile(Context context, WindowBounds windowBounds) {
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700745 DeviceProfile profile = toBuilder(context)
Sunny Goyal19ff7282021-04-22 10:12:54 -0700746 .setWindowBounds(windowBounds)
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700747 .setMultiWindowMode(true)
748 .build();
Jon Miranda93e1f042016-11-11 14:13:04 -0800749
Jon Miranda7ae64ff2016-11-21 16:18:46 -0800750 // We use these scales to measure and layout the widgets using their full invariant profile
751 // sizes and then draw them scaled and centered to fit in their multi-window mode cellspans.
752 float appWidgetScaleX = (float) profile.getCellSize().x / getCellSize().x;
753 float appWidgetScaleY = (float) profile.getCellSize().y / getCellSize().y;
Sihua Mae04aa202022-07-18 12:43:56 -0700754 if (appWidgetScaleX != 1 || appWidgetScaleY != 1) {
755 final PointF p = new PointF(appWidgetScaleX, appWidgetScaleY);
756 profile = profile.toBuilder(context)
757 .setViewScaleProvider(i -> p)
758 .build();
759 }
760
761 profile.hideWorkspaceLabelsIfNotEnoughSpace();
Jon Miranda7ae64ff2016-11-21 16:18:46 -0800762
Jon Miranda93e1f042016-11-11 14:13:04 -0800763 return profile;
Jon Mirandacc42c5b2016-10-27 17:15:27 -0700764 }
765
Adam Cohen63f1ec02014-08-12 09:23:13 -0700766 /**
Jon Miranda941375e2021-03-31 13:10:45 -0400767 * Checks if there is enough space for labels on the workspace.
768 * If there is not, labels on the Workspace are hidden.
Jon Miranda1091e532017-07-21 13:31:50 -0700769 * It is important to call this method after the All Apps variables have been set.
770 */
Jon Miranda941375e2021-03-31 13:10:45 -0400771 private void hideWorkspaceLabelsIfNotEnoughSpace() {
772 float iconTextHeight = Utilities.calculateTextHeight(iconTextSizePx);
773 float workspaceCellPaddingY = getCellSize().y - iconSizePx - iconDrawablePaddingPx
774 - iconTextHeight;
775
776 // We want enough space so that the text is closer to its corresponding icon.
777 if (workspaceCellPaddingY < iconTextHeight) {
778 iconTextSizePx = 0;
779 iconDrawablePaddingPx = 0;
Jon Miranda92c1b5d2021-07-20 13:57:16 -0700780 cellHeightPx = (int) Math.ceil(iconSizePx * ICON_OVERLAP_FACTOR);
Jon Miranda941375e2021-03-31 13:10:45 -0400781 autoResizeAllAppsCells();
782 }
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700783 }
Jon Miranda1091e532017-07-21 13:31:50 -0700784
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700785 /**
786 * Re-computes the all-apps cell size to be independent of workspace
787 */
788 public void autoResizeAllAppsCells() {
Jon Miranda941375e2021-03-31 13:10:45 -0400789 int textHeight = Utilities.calculateTextHeight(allAppsIconTextSizePx);
790 int topBottomPadding = textHeight;
Jon Miranda1091e532017-07-21 13:31:50 -0700791 allAppsCellHeightPx = allAppsIconSizePx + allAppsIconDrawablePaddingPx
Jon Miranda941375e2021-03-31 13:10:45 -0400792 + textHeight + (topBottomPadding * 2);
Jon Miranda1091e532017-07-21 13:31:50 -0700793 }
794
Thales Limab7ef5692022-03-10 10:32:36 +0000795 private void updateAllAppsContainerWidth(Resources res) {
Pat Manning08610ca2022-04-05 21:03:16 +0100796 int cellLayoutHorizontalPadding =
797 (cellLayoutPaddingPx.left + cellLayoutPaddingPx.right) / 2;
Alex Chau27b39b92022-01-14 18:02:18 +0000798 if (isTablet) {
Thales Limab7ef5692022-03-10 10:32:36 +0000799 allAppsLeftRightPadding =
Pat Manning08610ca2022-04-05 21:03:16 +0100800 res.getDimensionPixelSize(R.dimen.all_apps_bottom_sheet_horizontal_padding);
801
sfufa@google.comde013292021-09-21 18:22:44 -0700802 int usedWidth = (allAppsCellWidthPx * numShownAllAppsColumns)
Thales Limab7ef5692022-03-10 10:32:36 +0000803 + (allAppsBorderSpacePx.x * (numShownAllAppsColumns - 1))
Alex Chau27b39b92022-01-14 18:02:18 +0000804 + allAppsLeftRightPadding * 2;
805 allAppsLeftRightMargin = Math.max(1, (availableWidthPx - usedWidth) / 2);
sfufa@google.comde013292021-09-21 18:22:44 -0700806 } else {
807 allAppsLeftRightPadding =
Pat Manning08610ca2022-04-05 21:03:16 +0100808 desiredWorkspaceHorizontalMarginPx + cellLayoutHorizontalPadding;
sfufa@google.comde013292021-09-21 18:22:44 -0700809 }
810 }
811
Jon Miranda228877d2021-02-09 11:05:00 -0500812 /**
813 * Returns the amount of extra (or unused) vertical space.
814 */
815 private int updateAvailableDimensions(Resources res) {
Alex Chaua68164d2022-12-15 16:16:03 +0000816 float invIconSizeDp = inv.iconSize[mTypeIndex];
817 float invIconTextSizeSp = inv.iconTextSize[mTypeIndex];
818 iconSizePx = Math.max(1, pxFromDp(invIconSizeDp, mMetrics));
819 iconTextSizePx = pxFromSp(invIconTextSizeSp, mMetrics);
820
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700821 updateIconSize(1f, res);
Winson Chung59a488a2013-12-10 12:32:14 -0800822
Pat Manning08610ca2022-04-05 21:03:16 +0100823 updateWorkspacePadding();
Jon Mirandae126d722021-02-25 10:45:20 -0500824
825 // Check to see if the icons fit within the available height.
Pat Manninga2e14992022-04-22 11:29:17 +0100826 float usedHeight = getCellLayoutHeightSpecification();
Pat Manning25d53342022-05-10 09:58:49 +0000827 final int maxHeight = getCellLayoutHeight();
Jon Miranda228877d2021-02-09 11:05:00 -0500828 float extraHeight = Math.max(0, maxHeight - usedHeight);
Jon Mirandae126d722021-02-25 10:45:20 -0500829 float scaleY = maxHeight / usedHeight;
830 boolean shouldScale = scaleY < 1f;
831
832 float scaleX = 1f;
833 if (isScalableGrid) {
834 // We scale to fit the cellWidth and cellHeight in the available space.
835 // The benefit of scalable grids is that we can get consistent aspect ratios between
836 // devices.
Pat Manninga2e14992022-04-22 11:29:17 +0100837 float usedWidth =
838 getCellLayoutWidthSpecification() + (desiredWorkspaceHorizontalMarginPx * 2);
Jon Mirandae126d722021-02-25 10:45:20 -0500839 // We do not subtract padding here, as we also scale the workspace padding if needed.
840 scaleX = availableWidthPx / usedWidth;
841 shouldScale = true;
Winson Chungb3800242013-10-24 11:01:54 -0700842 }
Jon Mirandae126d722021-02-25 10:45:20 -0500843
844 if (shouldScale) {
845 float scale = Math.min(scaleX, scaleY);
846 updateIconSize(scale, res);
Pat Manninga2e14992022-04-22 11:29:17 +0100847 extraHeight = Math.max(0, maxHeight - getCellLayoutHeightSpecification());
Jon Mirandae126d722021-02-25 10:45:20 -0500848 }
849
Sunny Goyal0e7a3382020-04-13 17:15:05 -0700850 updateAvailableFolderCellDimensions(res);
Jon Miranda228877d2021-02-09 11:05:00 -0500851 return Math.round(extraHeight);
Winson Chungb3800242013-10-24 11:01:54 -0700852 }
853
Pat Manninga2e14992022-04-22 11:29:17 +0100854 private int getCellLayoutHeightSpecification() {
Pat Manning08610ca2022-04-05 21:03:16 +0100855 return (cellHeightPx * inv.numRows) + (cellLayoutBorderSpacePx.y * (inv.numRows - 1))
856 + cellLayoutPaddingPx.top + cellLayoutPaddingPx.bottom;
857 }
858
Pat Manninga2e14992022-04-22 11:29:17 +0100859 private int getCellLayoutWidthSpecification() {
Pat Manning25d53342022-05-10 09:58:49 +0000860 int numColumns = getPanelCount() * inv.numColumns;
Pat Manning08610ca2022-04-05 21:03:16 +0100861 return (cellWidthPx * numColumns) + (cellLayoutBorderSpacePx.x * (numColumns - 1))
862 + cellLayoutPaddingPx.left + cellLayoutPaddingPx.right;
Jon Mirandae126d722021-02-25 10:45:20 -0500863 }
864
Jon Miranda6f7e9702019-09-16 14:44:14 -0700865 /**
866 * Updating the iconSize affects many aspects of the launcher layout, such as: iconSizePx,
867 * iconTextSizePx, iconDrawablePaddingPx, cellWidth/Height, allApps* variants,
868 * hotseat sizes, workspaceSpringLoadedShrinkFactor, folderIconSizePx, and folderIconOffsetYPx.
869 */
Tony Wickham7ba547c2021-02-02 17:12:08 -0800870 public void updateIconSize(float scale, Resources res) {
Jon Mirandaab3c6812021-06-28 15:42:28 -0700871 // Icon scale should never exceed 1, otherwise pixellation may occur.
872 iconScale = Math.min(1f, scale);
873 cellScaleToFit = scale;
874
Jon Miranda18751b62017-07-31 17:25:27 -0700875 // Workspace
Sunny Goyal07b69292018-01-08 14:19:34 -0800876 final boolean isVerticalLayout = isVerticalBarLayout();
Jon Mirandaab3c6812021-06-28 15:42:28 -0700877 iconDrawablePaddingPx = (int) (iconDrawablePaddingOriginalPx * iconScale);
Thales Lima080d8902022-03-28 15:30:29 +0100878 cellLayoutBorderSpacePx = getCellLayoutBorderSpace(inv, scale);
Jon Mirandae126d722021-02-25 10:45:20 -0500879
880 if (isScalableGrid) {
Thales Lima83bedbf2021-10-05 17:47:39 +0100881 cellWidthPx = pxFromDp(inv.minCellSize[mTypeIndex].x, mMetrics, scale);
882 cellHeightPx = pxFromDp(inv.minCellSize[mTypeIndex].y, mMetrics, scale);
Alex Chaube753132022-12-09 16:46:54 +0000883
884 if (cellWidthPx < iconSizePx) {
885 // If cellWidth no longer fit iconSize, reduce borderSpace to make cellWidth bigger.
886 int numColumns = getPanelCount() * inv.numColumns;
887 int numBorders = numColumns - 1;
888 int extraWidthRequired = (iconSizePx - cellWidthPx) * numColumns;
889 if (cellLayoutBorderSpacePx.x * numBorders >= extraWidthRequired) {
890 cellWidthPx = iconSizePx;
891 cellLayoutBorderSpacePx.x -= extraWidthRequired / numBorders;
892 } else {
893 // If it still doesn't fit, set borderSpace to 0 and distribute the space for
894 // cellWidth, and reduce iconSize.
895 cellWidthPx = (cellWidthPx * numColumns
896 + cellLayoutBorderSpacePx.x * numBorders) / numColumns;
897 iconSizePx = Math.min(iconSizePx, cellWidthPx);
898 cellLayoutBorderSpacePx.x = 0;
899 }
900 }
901
902 int cellTextAndPaddingHeight =
903 iconDrawablePaddingPx + Utilities.calculateTextHeight(iconTextSizePx);
904 int cellContentHeight = iconSizePx + cellTextAndPaddingHeight;
905 if (cellHeightPx < cellContentHeight) {
906 // If cellHeight no longer fit iconSize, reduce borderSpace to make cellHeight
907 // bigger.
908 int numBorders = inv.numRows - 1;
909 int extraHeightRequired = (cellContentHeight - cellHeightPx) * inv.numRows;
910 if (cellLayoutBorderSpacePx.y * numBorders >= extraHeightRequired) {
911 cellHeightPx = cellContentHeight;
912 cellLayoutBorderSpacePx.y -= extraHeightRequired / numBorders;
913 } else {
Alex Chau06f36e82023-01-06 10:50:54 +0000914 // If it still doesn't fit, set borderSpace to 0 to recover space.
Alex Chaube753132022-12-09 16:46:54 +0000915 cellHeightPx = (cellHeightPx * inv.numRows
916 + cellLayoutBorderSpacePx.y * numBorders) / inv.numRows;
Alex Chaube753132022-12-09 16:46:54 +0000917 cellLayoutBorderSpacePx.y = 0;
Alex Chau06f36e82023-01-06 10:50:54 +0000918 // Reduce iconDrawablePaddingPx to make cellContentHeight smaller.
919 int cellContentWithoutPadding = cellContentHeight - iconDrawablePaddingPx;
920 if (cellContentWithoutPadding <= cellHeightPx) {
921 iconDrawablePaddingPx = cellContentHeight - cellHeightPx;
922 } else {
923 // If it still doesn't fit, set iconDrawablePaddingPx to 0 to recover space,
924 // then proportional reduce iconSizePx and iconTextSizePx to fit.
925 iconDrawablePaddingPx = 0;
926 float ratio = cellHeightPx / (float) cellContentWithoutPadding;
927 iconSizePx = (int) (iconSizePx * ratio);
928 iconTextSizePx = (int) (iconTextSizePx * ratio);
929 }
930 cellTextAndPaddingHeight =
931 iconDrawablePaddingPx + Utilities.calculateTextHeight(iconTextSizePx);
Alex Chaube753132022-12-09 16:46:54 +0000932 }
933 cellContentHeight = iconSizePx + cellTextAndPaddingHeight;
934 }
Jon Mirandae126d722021-02-25 10:45:20 -0500935 cellYPaddingPx = Math.max(0, cellHeightPx - cellContentHeight) / 2;
Thales Limad90faab2021-09-21 17:18:47 +0100936 desiredWorkspaceHorizontalMarginPx =
937 (int) (desiredWorkspaceHorizontalMarginOriginalPx * scale);
Jon Miranda228877d2021-02-09 11:05:00 -0500938 } else {
Jon Mirandae126d722021-02-25 10:45:20 -0500939 cellWidthPx = iconSizePx + iconDrawablePaddingPx;
Jon Miranda92c1b5d2021-07-20 13:57:16 -0700940 cellHeightPx = (int) Math.ceil(iconSizePx * ICON_OVERLAP_FACTOR)
941 + iconDrawablePaddingPx
Jon Miranda228877d2021-02-09 11:05:00 -0500942 + Utilities.calculateTextHeight(iconTextSizePx);
943 int cellPaddingY = (getCellSize().y - cellHeightPx) / 2;
944 if (iconDrawablePaddingPx > cellPaddingY && !isVerticalLayout
945 && !isMultiWindowMode) {
946 // Ensures that the label is closer to its corresponding icon. This is not an issue
947 // with vertical bar layout or multi-window mode since the issue is handled
948 // separately with their calls to {@link #adjustToHideWorkspaceLabels}.
949 cellHeightPx -= (iconDrawablePaddingPx - cellPaddingY);
950 iconDrawablePaddingPx = cellPaddingY;
951 }
Jon Miranda846455e2017-10-02 14:58:52 -0700952 }
Jon Miranda18751b62017-07-31 17:25:27 -0700953
Sunny Goyalae190ff2020-04-14 00:19:01 +0000954 // All apps
Brian Isganitis25b2ac82022-01-28 16:25:13 -0500955 updateAllAppsIconSize(scale, res);
Winson Chungb3800242013-10-24 11:01:54 -0700956
Thales Limab8c05952022-05-23 16:58:38 +0100957 updateHotseatSizes(iconSizePx);
Winson Chungb3800242013-10-24 11:01:54 -0700958
Sunny Goyalbaec6ff2016-09-14 11:26:21 -0700959 // Folder icon
Jon Miranda591e3602018-03-28 11:37:00 -0700960 folderIconSizePx = IconNormalizer.getNormalizedCircleSize(iconSizePx);
961 folderIconOffsetYPx = (iconSizePx - folderIconSizePx) / 2;
Winson Chung0f785722015-04-08 10:27:49 -0700962 }
963
Thales Lima425f6822022-05-10 13:44:58 -0300964 /**
Thales Lima6a590062022-11-22 15:52:49 +0000965 * This method calculates the space between the icons to achieve a certain width.
Thales Lima425f6822022-05-10 13:44:58 -0300966 */
Thales Lima6a590062022-11-22 15:52:49 +0000967 private int calculateHotseatBorderSpace(float hotseatWidthPx, int numExtraBorder) {
Thales Lima9938c2f2022-07-25 14:38:16 +0100968 float hotseatIconsTotalPx = iconSizePx * numShownHotseatIcons;
Thales Lima6a590062022-11-22 15:52:49 +0000969 int hotseatBorderSpace =
970 (int) (hotseatWidthPx - hotseatIconsTotalPx)
971 / (numShownHotseatIcons - 1 + numExtraBorder);
972 return Math.min(hotseatBorderSpace, maxHotseatIconSpacePx);
Thales Lima425f6822022-05-10 13:44:58 -0300973 }
974
Brian Isganitis25b2ac82022-01-28 16:25:13 -0500975
976 /**
977 * Updates the iconSize for allApps* variants.
978 */
Brian Isganitisa9a78112022-05-23 18:11:47 -0700979 private void updateAllAppsIconSize(float scale, Resources res) {
Thales Lima080d8902022-03-28 15:30:29 +0100980 allAppsBorderSpacePx = new Point(
981 pxFromDp(inv.allAppsBorderSpaces[mTypeIndex].x, mMetrics, scale),
982 pxFromDp(inv.allAppsBorderSpaces[mTypeIndex].y, mMetrics, scale));
Brandon Dayauon07ca8842022-04-27 10:52:28 -0700983 // AllApps cells don't have real space between cells,
984 // so we add the border space to the cell height
Alex Chaube753132022-12-09 16:46:54 +0000985 allAppsCellHeightPx = pxFromDp(inv.allAppsCellSize[mTypeIndex].y, mMetrics)
Brandon Dayauon07ca8842022-04-27 10:52:28 -0700986 + allAppsBorderSpacePx.y;
987 // but width is just the cell,
988 // the border is added in #updateAllAppsContainerWidth
Thales Lima080d8902022-03-28 15:30:29 +0100989 if (isScalableGrid) {
Alex Chaube753132022-12-09 16:46:54 +0000990 allAppsIconSizePx = pxFromDp(inv.allAppsIconSize[mTypeIndex], mMetrics);
991 allAppsIconTextSizePx = pxFromSp(inv.allAppsIconTextSize[mTypeIndex], mMetrics);
Brian Isganitis25b2ac82022-01-28 16:25:13 -0500992 allAppsIconDrawablePaddingPx = iconDrawablePaddingOriginalPx;
Brandon Dayauon7a8a9ed2022-06-06 14:32:22 -0700993 allAppsCellWidthPx = pxFromDp(inv.allAppsCellSize[mTypeIndex].x, mMetrics, scale);
Alex Chaube753132022-12-09 16:46:54 +0000994
995 if (allAppsCellWidthPx < allAppsIconSizePx) {
996 // If allAppsCellWidth no longer fit allAppsIconSize, reduce allAppsBorderSpace to
997 // make allAppsCellWidth bigger.
998 int numBorders = inv.numAllAppsColumns - 1;
999 int extraWidthRequired =
1000 (allAppsIconSizePx - allAppsCellWidthPx) * inv.numAllAppsColumns;
1001 if (allAppsBorderSpacePx.x * numBorders >= extraWidthRequired) {
1002 allAppsCellWidthPx = allAppsIconSizePx;
1003 allAppsBorderSpacePx.x -= extraWidthRequired / numBorders;
1004 } else {
1005 // If it still doesn't fit, set allAppsBorderSpace to 0 and distribute the space
1006 // for allAppsCellWidth, and reduce allAppsIconSize.
1007 allAppsCellWidthPx = (allAppsCellWidthPx * inv.numAllAppsColumns
1008 + allAppsBorderSpacePx.x * numBorders) / inv.numAllAppsColumns;
1009 allAppsIconSizePx = Math.min(allAppsIconSizePx, allAppsCellWidthPx);
1010 allAppsBorderSpacePx.x = 0;
1011 }
1012 }
1013
1014 int cellContentHeight = allAppsIconSizePx
1015 + Utilities.calculateTextHeight(allAppsIconTextSizePx) + allAppsBorderSpacePx.y;
1016 if (allAppsCellHeightPx < cellContentHeight) {
1017 // Increase allAppsCellHeight to fit its content.
1018 allAppsCellHeightPx = cellContentHeight;
1019 }
Brian Isganitis25b2ac82022-01-28 16:25:13 -05001020 } else {
Brandon Dayauon07ca8842022-04-27 10:52:28 -07001021 float invIconSizeDp = inv.allAppsIconSize[mTypeIndex];
1022 float invIconTextSizeSp = inv.allAppsIconTextSize[mTypeIndex];
Brian Isganitis25b2ac82022-01-28 16:25:13 -05001023 allAppsIconSizePx = Math.max(1, pxFromDp(invIconSizeDp, mMetrics, scale));
1024 allAppsIconTextSizePx = (int) (pxFromSp(invIconTextSizeSp, mMetrics) * scale);
Brandon Dayauon07ca8842022-04-27 10:52:28 -07001025 allAppsIconDrawablePaddingPx =
1026 res.getDimensionPixelSize(R.dimen.all_apps_icon_drawable_padding);
Brandon Dayauon7a8a9ed2022-06-06 14:32:22 -07001027 allAppsCellWidthPx = allAppsIconSizePx + (2 * allAppsIconDrawablePaddingPx);
Brian Isganitis25b2ac82022-01-28 16:25:13 -05001028 }
1029
Thales Limab7ef5692022-03-10 10:32:36 +00001030 updateAllAppsContainerWidth(res);
Brian Isganitis25b2ac82022-01-28 16:25:13 -05001031 if (isVerticalBarLayout()) {
1032 hideWorkspaceLabelsIfNotEnoughSpace();
1033 }
1034 }
1035
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001036 private void updateAvailableFolderCellDimensions(Resources res) {
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001037 updateFolderCellSize(1f, res);
Jon Mirandabf7d8122016-11-03 15:29:29 -07001038
Jon Mirandac1b23992016-12-13 08:57:36 -08001039 // Don't let the folder get too close to the edges of the screen.
Jon Miranda1786df32018-09-25 13:05:23 -07001040 int folderMargin = edgeMarginPx * 2;
Sunny Goyal07b69292018-01-08 14:19:34 -08001041 Point totalWorkspacePadding = getTotalWorkspacePadding();
Jon Mirandac1b23992016-12-13 08:57:36 -08001042
1043 // Check if the icons fit within the available height.
Jon Miranda228877d2021-02-09 11:05:00 -05001044 float contentUsedHeight = folderCellHeightPx * inv.numFolderRows
Thales Limab35faed2022-09-05 16:30:01 -03001045 + ((inv.numFolderRows - 1) * folderCellLayoutBorderSpacePx);
1046 int contentMaxHeight = availableHeightPx - totalWorkspacePadding.y - folderFooterHeightPx
Jon Mirandae126d722021-02-25 10:45:20 -05001047 - folderMargin - folderContentPaddingTop;
Samuel Fufa1c8d90a2019-11-12 17:54:58 -08001048 float scaleY = contentMaxHeight / contentUsedHeight;
Jon Mirandac1b23992016-12-13 08:57:36 -08001049
1050 // Check if the icons fit within the available width.
Jon Miranda228877d2021-02-09 11:05:00 -05001051 float contentUsedWidth = folderCellWidthPx * inv.numFolderColumns
Thales Limab35faed2022-09-05 16:30:01 -03001052 + ((inv.numFolderColumns - 1) * folderCellLayoutBorderSpacePx);
Jon Mirandae126d722021-02-25 10:45:20 -05001053 int contentMaxWidth = availableWidthPx - totalWorkspacePadding.x - folderMargin
1054 - folderContentPaddingLeftRight * 2;
Samuel Fufa1c8d90a2019-11-12 17:54:58 -08001055 float scaleX = contentMaxWidth / contentUsedWidth;
Jon Mirandac1b23992016-12-13 08:57:36 -08001056
1057 float scale = Math.min(scaleX, scaleY);
1058 if (scale < 1f) {
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001059 updateFolderCellSize(scale, res);
Jon Mirandabf7d8122016-11-03 15:29:29 -07001060 }
1061 }
1062
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001063 private void updateFolderCellSize(float scale, Resources res) {
Alex Chau0d4f1ac2022-12-20 12:31:14 +00001064 float invIconSizeDp = inv.iconSize[mTypeIndex];
Sunny Goyal35c7b192021-04-20 16:51:10 -07001065 folderChildIconSizePx = Math.max(1, pxFromDp(invIconSizeDp, mMetrics, scale));
Alex Chau0d4f1ac2022-12-20 12:31:14 +00001066 folderChildTextSizePx = pxFromSp(inv.iconTextSize[mTypeIndex], mMetrics, scale);
Thales Limab35faed2022-09-05 16:30:01 -03001067 folderLabelTextSizePx = Math.max(pxFromSp(MIN_FOLDER_TEXT_SIZE_SP, mMetrics),
1068 (int) (folderChildTextSizePx * folderLabelTextScale));
Jon Mirandabf7d8122016-11-03 15:29:29 -07001069
1070 int textHeight = Utilities.calculateTextHeight(folderChildTextSizePx);
Jon Mirandabf7d8122016-11-03 15:29:29 -07001071
Jon Miranda823da222021-03-23 08:08:45 -04001072 if (isScalableGrid) {
Thales Limab35faed2022-09-05 16:30:01 -03001073 if (inv.folderStyle == INVALID_RESOURCE_HANDLE) {
1074 folderCellWidthPx = pxFromDp(getCellSize().x, mMetrics, scale);
1075 folderCellHeightPx = pxFromDp(getCellSize().y, mMetrics, scale);
1076 }
Jon Mirandaf33f5b32021-07-22 17:15:31 -07001077
Thales Limab35faed2022-09-05 16:30:01 -03001078 folderContentPaddingLeftRight = folderCellLayoutBorderSpacePx;
Jon Miranda823da222021-03-23 08:08:45 -04001079 } else {
1080 int cellPaddingX = (int) (res.getDimensionPixelSize(R.dimen.folder_cell_x_padding)
1081 * scale);
1082 int cellPaddingY = (int) (res.getDimensionPixelSize(R.dimen.folder_cell_y_padding)
1083 * scale);
1084
1085 folderCellWidthPx = folderChildIconSizePx + 2 * cellPaddingX;
1086 folderCellHeightPx = folderChildIconSizePx + 2 * cellPaddingY + textHeight;
Thales Limab35faed2022-09-05 16:30:01 -03001087 folderContentPaddingLeftRight =
1088 res.getDimensionPixelSize(R.dimen.folder_content_padding_left_right);
1089 folderFooterHeightPx =
1090 res.getDimensionPixelSize(R.dimen.folder_footer_height_default);
Jon Miranda823da222021-03-23 08:08:45 -04001091 }
1092
Jonathan Miranda9ad87462017-07-26 17:41:02 +00001093 folderChildDrawablePaddingPx = Math.max(0,
1094 (folderCellHeightPx - folderChildIconSizePx - textHeight) / 3);
Jon Mirandabf7d8122016-11-03 15:29:29 -07001095 }
1096
Winson1f064272016-07-18 17:18:02 -07001097 public void updateInsets(Rect insets) {
1098 mInsets.set(insets);
1099 }
1100
Sunny Goyalae6e3182019-04-30 12:04:37 -07001101 /**
1102 * The current device insets. This is generally same as the insets being dispatched to
1103 * {@link Insettable} elements, but can differ if the element is using a different profile.
1104 */
Sunny Goyal1a52ef52018-01-11 10:15:03 -08001105 public Rect getInsets() {
1106 return mInsets;
1107 }
1108
Sunny Goyal756cd262015-08-20 12:33:21 -07001109 public Point getCellSize() {
Sunny Goyal19ff7282021-04-22 10:12:54 -07001110 return getCellSize(null);
Jon Miranda6f7e9702019-09-16 14:44:14 -07001111 }
1112
Sunny Goyal19ff7282021-04-22 10:12:54 -07001113 public Point getCellSize(Point result) {
1114 if (result == null) {
1115 result = new Point();
1116 }
Thales Limad1df5fc2021-09-03 18:37:19 +01001117
Pat Manning25d53342022-05-10 09:58:49 +00001118 int shortcutAndWidgetContainerWidth =
1119 getCellLayoutWidth() - (cellLayoutPaddingPx.left + cellLayoutPaddingPx.right);
1120 result.x = calculateCellWidth(shortcutAndWidgetContainerWidth, cellLayoutBorderSpacePx.x,
1121 inv.numColumns);
1122 int shortcutAndWidgetContainerHeight =
1123 getCellLayoutHeight() - (cellLayoutPaddingPx.top + cellLayoutPaddingPx.bottom);
1124 result.y = calculateCellHeight(shortcutAndWidgetContainerHeight, cellLayoutBorderSpacePx.y,
1125 inv.numRows);
Sunny Goyal3e8a04b2022-05-09 19:31:45 +00001126 return result;
Pat Manningb45d6c42022-05-03 14:32:06 +01001127 }
1128
1129 /**
Thales Lima1e8b45f2022-08-25 11:50:59 -04001130 * Returns the left and right space on the cell, which is the cell width - icon size
1131 */
1132 public int getCellHorizontalSpace() {
1133 return getCellSize().x - iconSizePx;
1134 }
1135
1136 /**
Pat Manning25d53342022-05-10 09:58:49 +00001137 * Gets the number of panels within the workspace.
1138 */
1139 public int getPanelCount() {
1140 return isTwoPanels ? 2 : 1;
1141 }
1142
1143 /**
Pat Manningde25c0d2022-04-05 19:11:26 +01001144 * Gets the space in px from the bottom of last item in the vertical-bar hotseat to the
1145 * bottom of the screen.
1146 */
Pat Manning5f74bfd2022-07-20 12:08:54 +01001147 private int getVerticalHotseatLastItemBottomOffset(Context context) {
1148 Rect hotseatBarPadding = getHotseatLayoutPadding(context);
Pat Manningde25c0d2022-04-05 19:11:26 +01001149 int cellHeight = calculateCellHeight(
Pat Manning5f74bfd2022-07-20 12:08:54 +01001150 heightPx - hotseatBarPadding.top - hotseatBarPadding.bottom, hotseatBorderSpace,
Pat Manningde25c0d2022-04-05 19:11:26 +01001151 numShownHotseatIcons);
Pat Manningde25c0d2022-04-05 19:11:26 +01001152 int extraIconEndSpacing = (cellHeight - iconSizePx) / 2;
Pat Manning5f74bfd2022-07-20 12:08:54 +01001153 return extraIconEndSpacing + hotseatBarPadding.bottom;
Pat Manningde25c0d2022-04-05 19:11:26 +01001154 }
1155
1156 /**
1157 * Gets the scaled top of the workspace in px for the spring-loaded edit state.
1158 */
Pat Manning25d53342022-05-10 09:58:49 +00001159 public float getCellLayoutSpringLoadShrunkTop() {
Pat Manning5f74bfd2022-07-20 12:08:54 +01001160 return mInsets.top + dropTargetBarTopMarginPx + dropTargetBarSizePx
Pat Manningde25c0d2022-04-05 19:11:26 +01001161 + dropTargetBarBottomMarginPx;
Pat Manningde25c0d2022-04-05 19:11:26 +01001162 }
1163
1164 /**
1165 * Gets the scaled bottom of the workspace in px for the spring-loaded edit state.
1166 */
Pat Manning5f74bfd2022-07-20 12:08:54 +01001167 public float getCellLayoutSpringLoadShrunkBottom(Context context) {
Pat Manningde25c0d2022-04-05 19:11:26 +01001168 int topOfHotseat = hotseatBarSizePx + springLoadedHotseatBarTopMarginPx;
Pat Manning5f74bfd2022-07-20 12:08:54 +01001169 return heightPx - (isVerticalBarLayout()
1170 ? getVerticalHotseatLastItemBottomOffset(context) : topOfHotseat);
Pat Manningde25c0d2022-04-05 19:11:26 +01001171 }
1172
Pat Manningea5c1d22022-04-14 10:58:16 +01001173 /**
Pat Manninga2e14992022-04-22 11:29:17 +01001174 * Gets the scale of the workspace for the spring-loaded edit state.
1175 */
Pat Manning5f74bfd2022-07-20 12:08:54 +01001176 public float getWorkspaceSpringLoadScale(Context context) {
1177 float scale =
1178 (getCellLayoutSpringLoadShrunkBottom(context) - getCellLayoutSpringLoadShrunkTop())
1179 / getCellLayoutHeight();
Pat Manninga2e14992022-04-22 11:29:17 +01001180 scale = Math.min(scale, 1f);
1181
Pat Manninge63dd252022-08-02 16:15:29 +01001182 // Reduce scale if next pages would not be visible after scaling the workspace.
Pat Manning25d53342022-05-10 09:58:49 +00001183 int workspaceWidth = availableWidthPx;
Pat Manninga2e14992022-04-22 11:29:17 +01001184 float scaledWorkspaceWidth = workspaceWidth * scale;
Alex Chau906d8822022-05-23 10:42:25 +01001185 float maxAvailableWidth = workspaceWidth - (2 * workspaceSpringLoadedMinNextPageVisiblePx);
Pat Manninga2e14992022-04-22 11:29:17 +01001186 if (scaledWorkspaceWidth > maxAvailableWidth) {
1187 scale *= maxAvailableWidth / scaledWorkspaceWidth;
1188 }
1189 return scale;
1190 }
1191
Pat Manning25d53342022-05-10 09:58:49 +00001192 /**
1193 * Gets the width of a single Cell Layout, aka a single panel within a Workspace.
1194 *
1195 * <p>This is the width of a Workspace, less its horizontal padding. Note that two-panel
1196 * layouts have two Cell Layouts per workspace.
1197 */
1198 public int getCellLayoutWidth() {
1199 return (availableWidthPx - getTotalWorkspacePadding().x) / getPanelCount();
Alex Chau60953332021-11-24 12:41:07 +00001200 }
1201
Pat Manning25d53342022-05-10 09:58:49 +00001202 /**
1203 * Gets the height of a single Cell Layout, aka a single panel within a Workspace.
1204 *
1205 * <p>This is the height of a Workspace, less its vertical padding.
1206 */
1207 public int getCellLayoutHeight() {
1208 return availableHeightPx - getTotalWorkspacePadding().y;
Pat Manning08610ca2022-04-05 21:03:16 +01001209 }
1210
Sunny Goyal6c2975e2016-07-06 09:47:56 -07001211 public Point getTotalWorkspacePadding() {
Sunny Goyal07b69292018-01-08 14:19:34 -08001212 return new Point(workspacePadding.left + workspacePadding.right,
1213 workspacePadding.top + workspacePadding.bottom);
Sunny Goyal6c2975e2016-07-06 09:47:56 -07001214 }
1215
1216 /**
Sunny Goyal07b69292018-01-08 14:19:34 -08001217 * Updates {@link #workspacePadding} as a result of any internal value change to reflect the
1218 * new workspace padding
Sunny Goyal6c2975e2016-07-06 09:47:56 -07001219 */
Sunny Goyal07b69292018-01-08 14:19:34 -08001220 private void updateWorkspacePadding() {
1221 Rect padding = workspacePadding;
Tony Wickham3a3517f2015-10-06 11:27:04 -07001222 if (isVerticalBarLayout()) {
Sunny Goyal228153d2018-01-04 15:35:22 -08001223 padding.top = 0;
1224 padding.bottom = edgeMarginPx;
Sunny Goyal7e2e67f2018-01-26 13:40:08 -08001225 if (isSeascape()) {
Tony Wickham1eeffbe2018-06-12 15:01:15 -07001226 padding.left = hotseatBarSizePx;
Tony Wickham5edf9e22020-03-27 20:06:52 -07001227 padding.right = hotseatBarSidePaddingStartPx;
Winson1f064272016-07-18 17:18:02 -07001228 } else {
Tony Wickham5edf9e22020-03-27 20:06:52 -07001229 padding.left = hotseatBarSidePaddingStartPx;
Tony Wickham1eeffbe2018-06-12 15:01:15 -07001230 padding.right = hotseatBarSizePx;
Winson1f064272016-07-18 17:18:02 -07001231 }
Winson Chungb3800242013-10-24 11:01:54 -07001232 } else {
Thales Limab8c05952022-05-23 16:58:38 +01001233 // Pad the bottom of the workspace with hotseat bar
1234 // and leave a bit of space in case a widget go all the way down
1235 int paddingBottom = hotseatBarSizePx + workspaceBottomPadding
1236 + workspacePageIndicatorHeight - mWorkspacePageIndicatorOverlapWorkspace
1237 - mInsets.bottom;
Pat Manning08610ca2022-04-05 21:03:16 +01001238 int paddingTop = workspaceTopPadding + (isScalableGrid ? 0 : edgeMarginPx);
1239 int paddingSide = desiredWorkspaceHorizontalMarginPx;
Andras Kloczl8e57cce2021-02-11 23:51:19 +01001240
Pat Manning08610ca2022-04-05 21:03:16 +01001241 padding.set(paddingSide, paddingTop, paddingSide, paddingBottom);
Winson Chungb3800242013-10-24 11:01:54 -07001242 }
Pat Manning08610ca2022-04-05 21:03:16 +01001243 insetPadding(workspacePadding, cellLayoutPaddingPx);
1244 }
1245
1246 private void insetPadding(Rect paddings, Rect insets) {
1247 insets.left = Math.min(insets.left, paddings.left);
1248 paddings.left -= insets.left;
1249
1250 insets.top = Math.min(insets.top, paddings.top);
1251 paddings.top -= insets.top;
1252
1253 insets.right = Math.min(insets.right, paddings.right);
1254 paddings.right -= insets.right;
1255
1256 insets.bottom = Math.min(insets.bottom, paddings.bottom);
1257 paddings.bottom -= insets.bottom;
Winson Chungb3800242013-10-24 11:01:54 -07001258 }
1259
Sunny Goyal57b22792021-05-25 14:35:01 -07001260 /**
1261 * Returns the padding for hotseat view
1262 */
1263 public Rect getHotseatLayoutPadding(Context context) {
Pat Manning5f74bfd2022-07-20 12:08:54 +01001264 Rect hotseatBarPadding = new Rect();
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001265 if (isVerticalBarLayout()) {
Sihua Ma38bb3b02022-03-21 22:20:14 -07001266 // The hotseat icons will be placed in the middle of the hotseat cells.
1267 // Changing the hotseatCellHeightPx is not affecting hotseat icon positions
1268 // in vertical bar layout.
1269 // Workspace icons are moved up by a small factor. The variable diffOverlapFactor
1270 // is set to account for that difference.
1271 float diffOverlapFactor = iconSizePx * (ICON_OVERLAP_FACTOR - 1) / 2;
Pat Manning08610ca2022-04-05 21:03:16 +01001272 int paddingTop = Math.max((int) (mInsets.top + cellLayoutPaddingPx.top
1273 - diffOverlapFactor), 0);
1274 int paddingBottom = Math.max((int) (mInsets.bottom + cellLayoutPaddingPx.bottom
Sihua Ma38bb3b02022-03-21 22:20:14 -07001275 + diffOverlapFactor), 0);
1276
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001277 if (isSeascape()) {
Pat Manning5f74bfd2022-07-20 12:08:54 +01001278 hotseatBarPadding.set(mInsets.left + hotseatBarSidePaddingStartPx, paddingTop,
Pat Manning08610ca2022-04-05 21:03:16 +01001279 hotseatBarSidePaddingEndPx, paddingBottom);
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001280 } else {
Pat Manning5f74bfd2022-07-20 12:08:54 +01001281 hotseatBarPadding.set(hotseatBarSidePaddingEndPx, paddingTop,
Pat Manning08610ca2022-04-05 21:03:16 +01001282 mInsets.right + hotseatBarSidePaddingStartPx, paddingBottom);
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001283 }
Sunny Goyal57b22792021-05-25 14:35:01 -07001284 } else if (isTaskbarPresent) {
Alex Chau51da2192022-05-20 13:32:10 +01001285 // Center the QSB vertically with hotseat
Thales Limab8c05952022-05-23 16:58:38 +01001286 int hotseatBarBottomPadding = getHotseatBarBottomPadding();
1287 int hotseatBarTopPadding =
1288 hotseatBarSizePx - hotseatBarBottomPadding - hotseatCellHeightPx;
Alex Chau51da2192022-05-20 13:32:10 +01001289
Thales Lima6a590062022-11-22 15:52:49 +00001290 int hotseatWidth = getHotseatRequiredWidth();
1291 int leftSpacing = (availableWidthPx - hotseatWidth) / 2;
1292 int rightSpacing = leftSpacing;
1293 // Hotseat aligns to the left with nav buttons
1294 if (hotseatBarEndOffset > 0) {
1295 leftSpacing = inlineNavButtonsEndSpacing;
1296 rightSpacing = availableWidthPx - hotseatWidth - leftSpacing + hotseatBorderSpace;
1297 }
Thales Lima612230d2022-03-31 18:04:37 +01001298
Thales Lima6a590062022-11-22 15:52:49 +00001299 hotseatBarPadding.set(leftSpacing, hotseatBarTopPadding, rightSpacing,
Thales Limab8c05952022-05-23 16:58:38 +01001300 hotseatBarBottomPadding);
Alex Chau51da2192022-05-20 13:32:10 +01001301
1302 boolean isRtl = Utilities.isRtl(context.getResources());
Thales Lima612230d2022-03-31 18:04:37 +01001303 if (isRtl) {
Thales Lima9938c2f2022-07-25 14:38:16 +01001304 hotseatBarPadding.right += getAdditionalQsbSpace();
Thales Lima612230d2022-03-31 18:04:37 +01001305 } else {
Thales Lima9938c2f2022-07-25 14:38:16 +01001306 hotseatBarPadding.left += getAdditionalQsbSpace();
Thales Lima612230d2022-03-31 18:04:37 +01001307 }
Thales Lima425f6822022-05-10 13:44:58 -03001308 } else if (isScalableGrid) {
Alex Chau206ede92022-08-01 17:46:12 +01001309 int sideSpacing = (availableWidthPx - hotseatQsbWidth) / 2;
Pat Manning5f74bfd2022-07-20 12:08:54 +01001310 hotseatBarPadding.set(sideSpacing,
Thales Limab8c05952022-05-23 16:58:38 +01001311 0,
Thales Lima425f6822022-05-10 13:44:58 -03001312 sideSpacing,
Thales Limab8c05952022-05-23 16:58:38 +01001313 getHotseatBarBottomPadding());
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001314 } else {
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001315 // We want the edges of the hotseat to line up with the edges of the workspace, but the
1316 // icons in the hotseat are a different size, and so don't line up perfectly. To account
1317 // for this, we pad the left and right of the hotseat with half of the difference of a
1318 // workspace cell vs a hotseat cell.
1319 float workspaceCellWidth = (float) widthPx / inv.numColumns;
Sunny Goyal19ff7282021-04-22 10:12:54 -07001320 float hotseatCellWidth = (float) widthPx / numShownHotseatIcons;
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001321 int hotseatAdjustment = Math.round((workspaceCellWidth - hotseatCellWidth) / 2);
Pat Manning5f74bfd2022-07-20 12:08:54 +01001322 hotseatBarPadding.set(
Thales Limab8c05952022-05-23 16:58:38 +01001323 hotseatAdjustment + workspacePadding.left + cellLayoutPaddingPx.left
1324 + mInsets.left,
1325 0,
Pat Manning08610ca2022-04-05 21:03:16 +01001326 hotseatAdjustment + workspacePadding.right + cellLayoutPaddingPx.right
Sunny Goyal786940a2020-06-02 02:31:31 -07001327 + mInsets.right,
Thales Limab8c05952022-05-23 16:58:38 +01001328 getHotseatBarBottomPadding());
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001329 }
Pat Manning5f74bfd2022-07-20 12:08:54 +01001330 return hotseatBarPadding;
Sunny Goyal81b4c7b2018-03-26 12:10:31 -07001331 }
1332
Thales Lima9938c2f2022-07-25 14:38:16 +01001333 private int getAdditionalQsbSpace() {
1334 return isQsbInline ? hotseatQsbWidth + hotseatBorderSpace : 0;
1335 }
1336
1337 /**
1338 * Calculate how much space the hotseat needs to be shown completely
1339 */
1340 private int getHotseatRequiredWidth() {
1341 int additionalQsbSpace = getAdditionalQsbSpace();
1342 return iconSizePx * numShownHotseatIcons
Thales Lima6a590062022-11-22 15:52:49 +00001343 + hotseatBorderSpace * (numShownHotseatIcons - (areNavButtonsInline ? 0 : 1))
Thales Lima9938c2f2022-07-25 14:38:16 +01001344 + additionalQsbSpace;
1345 }
1346
Winsonfadbe8f2016-07-22 16:35:37 -07001347 /**
Sunny Goyal57b22792021-05-25 14:35:01 -07001348 * Returns the number of pixels the QSB is translated from the bottom of the screen.
1349 */
1350 public int getQsbOffsetY() {
Thales Limaa1012902022-01-13 17:58:42 +00001351 if (isQsbInline) {
Thales Limab8c05952022-05-23 16:58:38 +01001352 return getHotseatBarBottomPadding() - ((hotseatQsbHeight - hotseatCellHeightPx) / 2);
1353 } else if (isTaskbarPresent) { // QSB on top
1354 return hotseatBarSizePx - hotseatQsbHeight + hotseatQsbShadowHeight;
Jonathan Miranda8f16a772021-07-23 23:10:37 +00001355 } else {
Thales Limab8c05952022-05-23 16:58:38 +01001356 return hotseatBarBottomSpacePx - hotseatQsbShadowHeight;
Jonathan Miranda7a273e22021-06-24 21:29:10 +00001357 }
Sunny Goyal57b22792021-05-25 14:35:01 -07001358 }
1359
Thales Limab8c05952022-05-23 16:58:38 +01001360 /**
1361 * Returns the number of pixels the hotseat is translated from the bottom of the screen.
1362 */
1363 private int getHotseatBarBottomPadding() {
1364 if (isTaskbarPresent) { // QSB on top or inline
1365 return hotseatBarBottomSpacePx - (Math.abs(hotseatCellHeightPx - iconSizePx) / 2);
Thales Limaa1012902022-01-13 17:58:42 +00001366 } else {
Thales Limab8c05952022-05-23 16:58:38 +01001367 return hotseatBarSizePx - hotseatCellHeightPx;
Thales Limaa1012902022-01-13 17:58:42 +00001368 }
Sunny Goyal57b22792021-05-25 14:35:01 -07001369 }
1370
1371 /**
Alex Chau51da2192022-05-20 13:32:10 +01001372 * Returns the number of pixels the taskbar is translated from the bottom of the screen.
1373 */
1374 public int getTaskbarOffsetY() {
1375 int taskbarIconBottomSpace = (taskbarSize - iconSizePx) / 2;
1376 int launcherIconBottomSpace =
1377 Math.min((hotseatCellHeightPx - iconSizePx) / 2, gridVisualizationPaddingY);
Thales Limab8c05952022-05-23 16:58:38 +01001378 return getHotseatBarBottomPadding() + launcherIconBottomSpace - taskbarIconBottomSpace;
Alex Chau51da2192022-05-20 13:32:10 +01001379 }
1380
1381 /**
Alex Chaua2fc7642022-04-21 14:20:23 +01001382 * Returns the number of pixels required below OverviewActions excluding insets.
1383 */
1384 public int getOverviewActionsClaimedSpaceBelow() {
Alex Chaud67ddc42022-09-30 18:15:56 +01001385 if (isTaskbarPresent) {
Alex Chau905e0f12022-11-14 21:55:37 +00001386 if (FeatureFlags.ENABLE_TASKBAR_IN_OVERVIEW.get()) {
Alex Chau85d664e2023-01-16 16:31:59 +00001387 return transientTaskbarSize + transientTaskbarMargin * 2;
Alex Chau905e0f12022-11-14 21:55:37 +00001388 }
1389
1390 return isGestureMode
1391 ? stashedTaskbarSize
1392 // Align vertically to where nav buttons are.
1393 : ((taskbarSize - overviewActionsHeight) / 2) + getTaskbarOffsetY();
Alex Chaud67ddc42022-09-30 18:15:56 +01001394 }
1395 return mInsets.bottom;
Alex Chaua2fc7642022-04-21 14:20:23 +01001396 }
1397
1398 /** Gets the space that the overview actions will take, including bottom margin. */
1399 public int getOverviewActionsClaimedSpace() {
1400 return overviewActionsTopMarginPx + overviewActionsHeight
1401 + getOverviewActionsClaimedSpaceBelow();
1402 }
1403
1404 /**
Sihua Mae04aa202022-07-18 12:43:56 -07001405 * Takes the View and return the scales of width and height depending on the DeviceProfile
1406 * specifications
1407 *
1408 * @param itemInfo The tag of the widget view
1409 * @return A PointF instance with the x set to be the scale of width, and y being the scale of
1410 * height
1411 */
1412 @NonNull
1413 public PointF getAppWidgetScale(@Nullable final ItemInfo itemInfo) {
1414 return mViewScaleProvider.getScaleFromItemInfo(itemInfo);
1415 }
1416
1417 /**
Winsonfadbe8f2016-07-22 16:35:37 -07001418 * @return the bounds for which the open folders should be contained within
1419 */
1420 public Rect getAbsoluteOpenFolderBounds() {
1421 if (isVerticalBarLayout()) {
1422 // Folders should only appear right of the drop target bar and left of the hotseat
1423 return new Rect(mInsets.left + dropTargetBarSizePx + edgeMarginPx,
1424 mInsets.top,
Jon Miranda18751b62017-07-31 17:25:27 -07001425 mInsets.left + availableWidthPx - hotseatBarSizePx - edgeMarginPx,
Winsonfadbe8f2016-07-22 16:35:37 -07001426 mInsets.top + availableHeightPx);
1427 } else {
1428 // Folders should only appear below the drop target bar and above the hotseat
Tony Wickhamae72b462021-03-10 16:18:40 -08001429 int hotseatTop = isTaskbarPresent ? taskbarSize : hotseatBarSizePx;
Tony Wickhamb4b7e202018-01-12 17:39:24 -08001430 return new Rect(mInsets.left + edgeMarginPx,
Winsonfadbe8f2016-07-22 16:35:37 -07001431 mInsets.top + dropTargetBarSizePx + edgeMarginPx,
Tony Wickhamb4b7e202018-01-12 17:39:24 -08001432 mInsets.left + availableWidthPx - edgeMarginPx,
Tony Wickhamae72b462021-03-10 16:18:40 -08001433 mInsets.top + availableHeightPx - hotseatTop
Tony Wickham5edf9e22020-03-27 20:06:52 -07001434 - workspacePageIndicatorHeight - edgeMarginPx);
Winsonfadbe8f2016-07-22 16:35:37 -07001435 }
1436 }
1437
Jon Miranda228877d2021-02-09 11:05:00 -05001438 public static int calculateCellWidth(int width, int borderSpacing, int countX) {
1439 return (width - ((countX - 1) * borderSpacing)) / countX;
Winson Chungb3800242013-10-24 11:01:54 -07001440 }
Pierre Barbier de Reuille578deba2021-09-24 13:47:44 +01001441
Jon Miranda228877d2021-02-09 11:05:00 -05001442 public static int calculateCellHeight(int height, int borderSpacing, int countY) {
1443 return (height - ((countY - 1) * borderSpacing)) / countY;
Winson Chungb3800242013-10-24 11:01:54 -07001444 }
1445
Hyunyoung Song18bfaaf2015-03-17 11:32:21 -07001446 /**
Tony Wickham55616cd2015-09-23 14:55:17 -07001447 * When {@code true}, the device is in landscape mode and the hotseat is on the right column.
1448 * When {@code false}, either device is in portrait mode or the device is in landscape mode and
1449 * the hotseat is on the bottom row.
Hyunyoung Song18bfaaf2015-03-17 11:32:21 -07001450 */
Tony Wickhamab946a12015-09-16 15:38:16 -07001451 public boolean isVerticalBarLayout() {
Winson Chungb3800242013-10-24 11:01:54 -07001452 return isLandscape && transposeLayoutWithOrientation;
1453 }
1454
Sunny Goyal59d086c2018-05-07 17:31:40 -07001455 /**
1456 * Updates orientation information and returns true if it has changed from the previous value.
1457 */
Winson Chung13c1c2c2019-09-06 11:46:19 -07001458 public boolean updateIsSeascape(Context context) {
Sunny Goyal59d086c2018-05-07 17:31:40 -07001459 if (isVerticalBarLayout()) {
Sunny Goyal35c7b192021-04-20 16:51:10 -07001460 boolean isSeascape = DisplayController.INSTANCE.get(context)
1461 .getInfo().rotation == Surface.ROTATION_270;
Sunny Goyal59d086c2018-05-07 17:31:40 -07001462 if (mIsSeascape != isSeascape) {
1463 mIsSeascape = isSeascape;
Pat Manning08610ca2022-04-05 21:03:16 +01001464 // Hotseat changing sides requires updating workspace left/right paddings
1465 updateWorkspacePadding();
Sunny Goyal59d086c2018-05-07 17:31:40 -07001466 return true;
1467 }
1468 }
1469 return false;
1470 }
1471
Sunny Goyal7e2e67f2018-01-26 13:40:08 -08001472 public boolean isSeascape() {
Sunny Goyal59d086c2018-05-07 17:31:40 -07001473 return isVerticalBarLayout() && mIsSeascape;
Sunny Goyal7e2e67f2018-01-26 13:40:08 -08001474 }
1475
Sunny Goyal07b69292018-01-08 14:19:34 -08001476 public boolean shouldFadeAdjacentWorkspaceScreens() {
Sunny Goyal19ff7282021-04-22 10:12:54 -07001477 return isVerticalBarLayout();
Winson Chungb3800242013-10-24 11:01:54 -07001478 }
1479
Jon Miranda92c1b5d2021-07-20 13:57:16 -07001480 public int getCellContentHeight(@ContainerType int containerType) {
Sunny Goyalc13403c2016-11-18 23:44:48 -08001481 switch (containerType) {
1482 case CellLayout.WORKSPACE:
1483 return cellHeightPx;
1484 case CellLayout.FOLDER:
1485 return folderCellHeightPx;
1486 case CellLayout.HOTSEAT:
Jon Miranda92c1b5d2021-07-20 13:57:16 -07001487 // The hotseat is the only container where the cell height is going to be
1488 // different from the content within that cell.
1489 return iconSizePx;
Sunny Goyalc13403c2016-11-18 23:44:48 -08001490 default:
1491 // ??
1492 return 0;
1493 }
1494 }
Sunny Goyal13178ac2016-04-04 16:35:22 -07001495
Jon Miranda58561d42021-03-17 10:51:54 -04001496 private String pxToDpStr(String name, float value) {
Sunny Goyal35c7b192021-04-20 16:51:10 -07001497 return "\t" + name + ": " + value + "px (" + dpiFromPx(value, mMetrics.densityDpi) + "dp)";
Jon Miranda58561d42021-03-17 10:51:54 -04001498 }
1499
Alex Chaue818bcb2022-09-02 17:27:11 +01001500 private String dpPointFToString(String name, PointF value) {
1501 return String.format(Locale.ENGLISH, "\t%s: PointF(%.1f, %.1f)dp", name, value.x, value.y);
1502 }
1503
Pat Manning5f74bfd2022-07-20 12:08:54 +01001504 /** Dumps various DeviceProfile variables to the specified writer. */
1505 public void dump(Context context, String prefix, PrintWriter writer) {
Jon Miranda58561d42021-03-17 10:51:54 -04001506 writer.println(prefix + "DeviceProfile:");
Sunny Goyal35c7b192021-04-20 16:51:10 -07001507 writer.println(prefix + "\t1 dp = " + mMetrics.density + " px");
Jon Miranda58561d42021-03-17 10:51:54 -04001508
1509 writer.println(prefix + "\tisTablet:" + isTablet);
Jon Miranda58561d42021-03-17 10:51:54 -04001510 writer.println(prefix + "\tisPhone:" + isPhone);
1511 writer.println(prefix + "\ttransposeLayoutWithOrientation:"
1512 + transposeLayoutWithOrientation);
Alex Chau6ed408f2022-03-04 12:58:05 +00001513 writer.println(prefix + "\tisGestureMode:" + isGestureMode);
Jon Miranda58561d42021-03-17 10:51:54 -04001514
1515 writer.println(prefix + "\tisLandscape:" + isLandscape);
1516 writer.println(prefix + "\tisMultiWindowMode:" + isMultiWindowMode);
Sunny Goyal19ff7282021-04-22 10:12:54 -07001517 writer.println(prefix + "\tisTwoPanels:" + isTwoPanels);
Jon Miranda58561d42021-03-17 10:51:54 -04001518
1519 writer.println(prefix + pxToDpStr("windowX", windowX));
1520 writer.println(prefix + pxToDpStr("windowY", windowY));
1521 writer.println(prefix + pxToDpStr("widthPx", widthPx));
1522 writer.println(prefix + pxToDpStr("heightPx", heightPx));
Jon Miranda58561d42021-03-17 10:51:54 -04001523 writer.println(prefix + pxToDpStr("availableWidthPx", availableWidthPx));
1524 writer.println(prefix + pxToDpStr("availableHeightPx", availableHeightPx));
Alex Chaue0227552022-04-06 19:44:43 +01001525 writer.println(prefix + pxToDpStr("mInsets.left", mInsets.left));
1526 writer.println(prefix + pxToDpStr("mInsets.top", mInsets.top));
1527 writer.println(prefix + pxToDpStr("mInsets.right", mInsets.right));
1528 writer.println(prefix + pxToDpStr("mInsets.bottom", mInsets.bottom));
Jon Miranda58561d42021-03-17 10:51:54 -04001529
1530 writer.println(prefix + "\taspectRatio:" + aspectRatio);
1531
1532 writer.println(prefix + "\tisScalableGrid:" + isScalableGrid);
1533
Thales Lima83bedbf2021-10-05 17:47:39 +01001534 writer.println(prefix + "\tinv.numRows: " + inv.numRows);
Alex Chau9fee3fd2021-12-01 18:43:10 +00001535 writer.println(prefix + "\tinv.numColumns: " + inv.numColumns);
1536 writer.println(prefix + "\tinv.numSearchContainerColumns: "
1537 + inv.numSearchContainerColumns);
Jon Miranda58561d42021-03-17 10:51:54 -04001538
Alex Chaue818bcb2022-09-02 17:27:11 +01001539 writer.println(prefix + dpPointFToString("minCellSize", inv.minCellSize[mTypeIndex]));
Jon Mirandaab3c6812021-06-28 15:42:28 -07001540
Jon Miranda58561d42021-03-17 10:51:54 -04001541 writer.println(prefix + pxToDpStr("cellWidthPx", cellWidthPx));
1542 writer.println(prefix + pxToDpStr("cellHeightPx", cellHeightPx));
1543
1544 writer.println(prefix + pxToDpStr("getCellSize().x", getCellSize().x));
1545 writer.println(prefix + pxToDpStr("getCellSize().y", getCellSize().y));
1546
Thales Lima83bedbf2021-10-05 17:47:39 +01001547 writer.println(prefix + pxToDpStr("cellLayoutBorderSpacePx Horizontal",
1548 cellLayoutBorderSpacePx.x));
1549 writer.println(prefix + pxToDpStr("cellLayoutBorderSpacePx Vertical",
1550 cellLayoutBorderSpacePx.y));
Pat Manning5f74bfd2022-07-20 12:08:54 +01001551 writer.println(
1552 prefix + pxToDpStr("cellLayoutPaddingPx.left", cellLayoutPaddingPx.left));
1553 writer.println(
1554 prefix + pxToDpStr("cellLayoutPaddingPx.top", cellLayoutPaddingPx.top));
1555 writer.println(
1556 prefix + pxToDpStr("cellLayoutPaddingPx.right", cellLayoutPaddingPx.right));
Pat Manning08610ca2022-04-05 21:03:16 +01001557 writer.println(
1558 prefix + pxToDpStr("cellLayoutPaddingPx.bottom", cellLayoutPaddingPx.bottom));
Thales Lima83bedbf2021-10-05 17:47:39 +01001559
Jon Miranda58561d42021-03-17 10:51:54 -04001560 writer.println(prefix + pxToDpStr("iconSizePx", iconSizePx));
1561 writer.println(prefix + pxToDpStr("iconTextSizePx", iconTextSizePx));
1562 writer.println(prefix + pxToDpStr("iconDrawablePaddingPx", iconDrawablePaddingPx));
1563
1564 writer.println(prefix + pxToDpStr("folderCellWidthPx", folderCellWidthPx));
1565 writer.println(prefix + pxToDpStr("folderCellHeightPx", folderCellHeightPx));
1566 writer.println(prefix + pxToDpStr("folderChildIconSizePx", folderChildIconSizePx));
1567 writer.println(prefix + pxToDpStr("folderChildTextSizePx", folderChildTextSizePx));
1568 writer.println(prefix + pxToDpStr("folderChildDrawablePaddingPx",
1569 folderChildDrawablePaddingPx));
Thales Limab35faed2022-09-05 16:30:01 -03001570 writer.println(prefix + pxToDpStr("folderCellLayoutBorderSpacePx",
1571 folderCellLayoutBorderSpacePx));
Thales Limaa08a4432022-08-09 09:55:17 +01001572 writer.println(prefix + pxToDpStr("folderContentPaddingLeftRight",
1573 folderContentPaddingLeftRight));
1574 writer.println(prefix + pxToDpStr("folderTopPadding", folderContentPaddingTop));
Thales Limab35faed2022-09-05 16:30:01 -03001575 writer.println(prefix + pxToDpStr("folderFooterHeight", folderFooterHeightPx));
Jon Miranda58561d42021-03-17 10:51:54 -04001576
Alex Chaue0227552022-04-06 19:44:43 +01001577 writer.println(prefix + pxToDpStr("bottomSheetTopPadding", bottomSheetTopPadding));
Alex Chau3d2c0622022-09-01 21:28:14 +01001578 writer.println(prefix + "\tbottomSheetOpenDuration: " + bottomSheetOpenDuration);
1579 writer.println(prefix + "\tbottomSheetCloseDuration: " + bottomSheetCloseDuration);
1580 writer.println(prefix + "\tbottomSheetWorkspaceScale: " + bottomSheetWorkspaceScale);
1581 writer.println(prefix + "\tbottomSheetDepth: " + bottomSheetDepth);
Alex Chaue0227552022-04-06 19:44:43 +01001582
1583 writer.println(prefix + pxToDpStr("allAppsShiftRange", allAppsShiftRange));
1584 writer.println(prefix + pxToDpStr("allAppsTopPadding", allAppsTopPadding));
Alex Chau3d2c0622022-09-01 21:28:14 +01001585 writer.println(prefix + "\tallAppsOpenDuration: " + allAppsOpenDuration);
1586 writer.println(prefix + "\tallAppsCloseDuration: " + allAppsCloseDuration);
Jon Miranda58561d42021-03-17 10:51:54 -04001587 writer.println(prefix + pxToDpStr("allAppsIconSizePx", allAppsIconSizePx));
1588 writer.println(prefix + pxToDpStr("allAppsIconTextSizePx", allAppsIconTextSizePx));
1589 writer.println(prefix + pxToDpStr("allAppsIconDrawablePaddingPx",
1590 allAppsIconDrawablePaddingPx));
1591 writer.println(prefix + pxToDpStr("allAppsCellHeightPx", allAppsCellHeightPx));
Alex Chau27b39b92022-01-14 18:02:18 +00001592 writer.println(prefix + pxToDpStr("allAppsCellWidthPx", allAppsCellWidthPx));
Pat Manning26f70f72022-07-07 13:50:39 +01001593 writer.println(prefix + pxToDpStr("allAppsBorderSpacePxX", allAppsBorderSpacePx.x));
1594 writer.println(prefix + pxToDpStr("allAppsBorderSpacePxY", allAppsBorderSpacePx.y));
Sunny Goyal19ff7282021-04-22 10:12:54 -07001595 writer.println(prefix + "\tnumShownAllAppsColumns: " + numShownAllAppsColumns);
Alex Chau62572c02022-07-25 18:36:37 +00001596 writer.println(prefix + pxToDpStr("allAppsLeftRightPadding", allAppsLeftRightPadding));
Alex Chau27b39b92022-01-14 18:02:18 +00001597 writer.println(prefix + pxToDpStr("allAppsLeftRightMargin", allAppsLeftRightMargin));
Jon Miranda58561d42021-03-17 10:51:54 -04001598
1599 writer.println(prefix + pxToDpStr("hotseatBarSizePx", hotseatBarSizePx));
Thales Lima425f6822022-05-10 13:44:58 -03001600 writer.println(prefix + "\tinv.hotseatColumnSpan: " + inv.hotseatColumnSpan[mTypeIndex]);
Jon Miranda58561d42021-03-17 10:51:54 -04001601 writer.println(prefix + pxToDpStr("hotseatCellHeightPx", hotseatCellHeightPx));
Alex Chau62572c02022-07-25 18:36:37 +00001602 writer.println(prefix + pxToDpStr("hotseatBarBottomSpacePx", hotseatBarBottomSpacePx));
Jon Miranda58561d42021-03-17 10:51:54 -04001603 writer.println(prefix + pxToDpStr("hotseatBarSidePaddingStartPx",
1604 hotseatBarSidePaddingStartPx));
1605 writer.println(prefix + pxToDpStr("hotseatBarSidePaddingEndPx",
1606 hotseatBarSidePaddingEndPx));
Pat Manning26f70f72022-07-07 13:50:39 +01001607 writer.println(prefix + pxToDpStr("hotseatBarEndOffset", hotseatBarEndOffset));
Thales Limab8c05952022-05-23 16:58:38 +01001608 writer.println(prefix + pxToDpStr("hotseatQsbSpace", hotseatQsbSpace));
1609 writer.println(prefix + pxToDpStr("hotseatQsbHeight", hotseatQsbHeight));
Pat Manningde25c0d2022-04-05 19:11:26 +01001610 writer.println(prefix + pxToDpStr("springLoadedHotseatBarTopMarginPx",
1611 springLoadedHotseatBarTopMarginPx));
Pat Manning5f74bfd2022-07-20 12:08:54 +01001612 Rect hotseatLayoutPadding = getHotseatLayoutPadding(context);
1613 writer.println(prefix + pxToDpStr("getHotseatLayoutPadding(context).top",
1614 hotseatLayoutPadding.top));
1615 writer.println(prefix + pxToDpStr("getHotseatLayoutPadding(context).bottom",
1616 hotseatLayoutPadding.bottom));
1617 writer.println(prefix + pxToDpStr("getHotseatLayoutPadding(context).left",
1618 hotseatLayoutPadding.left));
1619 writer.println(prefix + pxToDpStr("getHotseatLayoutPadding(context).right",
1620 hotseatLayoutPadding.right));
Sunny Goyal19ff7282021-04-22 10:12:54 -07001621 writer.println(prefix + "\tnumShownHotseatIcons: " + numShownHotseatIcons);
Thales Lima116b51a2022-02-03 16:19:47 +00001622 writer.println(prefix + pxToDpStr("hotseatBorderSpace", hotseatBorderSpace));
Thales Limaa1012902022-01-13 17:58:42 +00001623 writer.println(prefix + "\tisQsbInline: " + isQsbInline);
Alex Chau206ede92022-08-01 17:46:12 +01001624 writer.println(prefix + pxToDpStr("hotseatQsbWidth", hotseatQsbWidth));
Jon Miranda58561d42021-03-17 10:51:54 -04001625
1626 writer.println(prefix + "\tisTaskbarPresent:" + isTaskbarPresent);
Tony Wickham635e1802021-07-22 14:28:04 -10001627 writer.println(prefix + "\tisTaskbarPresentInApps:" + isTaskbarPresentInApps);
Jon Miranda58561d42021-03-17 10:51:54 -04001628 writer.println(prefix + pxToDpStr("taskbarSize", taskbarSize));
Jon Miranda58561d42021-03-17 10:51:54 -04001629
Thales Lima83bedbf2021-10-05 17:47:39 +01001630 writer.println(prefix + pxToDpStr("desiredWorkspaceHorizontalMarginPx",
1631 desiredWorkspaceHorizontalMarginPx));
Jon Miranda58561d42021-03-17 10:51:54 -04001632 writer.println(prefix + pxToDpStr("workspacePadding.left", workspacePadding.left));
1633 writer.println(prefix + pxToDpStr("workspacePadding.top", workspacePadding.top));
1634 writer.println(prefix + pxToDpStr("workspacePadding.right", workspacePadding.right));
Alex Chau62572c02022-07-25 18:36:37 +00001635 writer.println(prefix + pxToDpStr("workspacePadding.bottom", workspacePadding.bottom));
Jon Miranda58561d42021-03-17 10:51:54 -04001636
Jon Mirandaab3c6812021-06-28 15:42:28 -07001637 writer.println(prefix + pxToDpStr("iconScale", iconScale));
1638 writer.println(prefix + pxToDpStr("cellScaleToFit ", cellScaleToFit));
Jon Miranda58561d42021-03-17 10:51:54 -04001639 writer.println(prefix + pxToDpStr("extraSpace", extraSpace));
Alex Chau62572c02022-07-25 18:36:37 +00001640 writer.println(prefix + pxToDpStr("unscaled extraSpace", extraSpace / iconScale));
Jon Mirandac9e69fa2021-03-22 17:13:34 -04001641
Thales Lima171ee662022-11-22 15:52:49 +00001642 writer.println(prefix + pxToDpStr("maxEmptySpace", maxEmptySpace));
Jon Miranda58561d42021-03-17 10:51:54 -04001643 writer.println(prefix + pxToDpStr("workspaceTopPadding", workspaceTopPadding));
1644 writer.println(prefix + pxToDpStr("workspaceBottomPadding", workspaceBottomPadding));
Alex Chau635b3ab2022-01-26 16:49:10 +00001645
1646 writer.println(prefix + pxToDpStr("overviewTaskMarginPx", overviewTaskMarginPx));
Alex Chau635b3ab2022-01-26 16:49:10 +00001647 writer.println(prefix + pxToDpStr("overviewTaskIconSizePx", overviewTaskIconSizePx));
1648 writer.println(prefix + pxToDpStr("overviewTaskIconDrawableSizePx",
1649 overviewTaskIconDrawableSizePx));
1650 writer.println(prefix + pxToDpStr("overviewTaskIconDrawableSizeGridPx",
1651 overviewTaskIconDrawableSizeGridPx));
1652 writer.println(prefix + pxToDpStr("overviewTaskThumbnailTopMarginPx",
1653 overviewTaskThumbnailTopMarginPx));
Alex Chaua2fc7642022-04-21 14:20:23 +01001654 writer.println(prefix + pxToDpStr("overviewActionsTopMarginPx",
1655 overviewActionsTopMarginPx));
1656 writer.println(prefix + pxToDpStr("overviewActionsHeight",
1657 overviewActionsHeight));
Alex Chau1b276a12022-12-19 14:01:36 +00001658 writer.println(prefix + pxToDpStr("overviewActionsClaimedSpaceBelow",
1659 getOverviewActionsClaimedSpaceBelow()));
Alex Chau635b3ab2022-01-26 16:49:10 +00001660 writer.println(prefix + pxToDpStr("overviewActionsButtonSpacing",
1661 overviewActionsButtonSpacing));
1662 writer.println(prefix + pxToDpStr("overviewPageSpacing", overviewPageSpacing));
1663 writer.println(prefix + pxToDpStr("overviewRowSpacing", overviewRowSpacing));
1664 writer.println(prefix + pxToDpStr("overviewGridSideMargin", overviewGridSideMargin));
Pat Manningde25c0d2022-04-05 19:11:26 +01001665
Alex Chau62572c02022-07-25 18:36:37 +00001666 writer.println(prefix + pxToDpStr("dropTargetBarTopMarginPx", dropTargetBarTopMarginPx));
Pat Manningde25c0d2022-04-05 19:11:26 +01001667 writer.println(prefix + pxToDpStr("dropTargetBarSizePx", dropTargetBarSizePx));
Alex Chau62572c02022-07-25 18:36:37 +00001668 writer.println(
1669 prefix + pxToDpStr("dropTargetBarBottomMarginPx", dropTargetBarBottomMarginPx));
Pat Manningde25c0d2022-04-05 19:11:26 +01001670
Pat Manning5f74bfd2022-07-20 12:08:54 +01001671 writer.println(prefix + pxToDpStr("getCellLayoutSpringLoadShrunkTop()",
1672 getCellLayoutSpringLoadShrunkTop()));
1673 writer.println(prefix + pxToDpStr("getCellLayoutSpringLoadShrunkBottom()",
1674 getCellLayoutSpringLoadShrunkBottom(context)));
Alex Chau906d8822022-05-23 10:42:25 +01001675 writer.println(prefix + pxToDpStr("workspaceSpringLoadedMinNextPageVisiblePx",
1676 workspaceSpringLoadedMinNextPageVisiblePx));
Pat Manning5f74bfd2022-07-20 12:08:54 +01001677 writer.println(prefix + pxToDpStr("getWorkspaceSpringLoadScale()",
1678 getWorkspaceSpringLoadScale(context)));
Thales Limab8c05952022-05-23 16:58:38 +01001679 writer.println(prefix + pxToDpStr("getCellLayoutHeight()", getCellLayoutHeight()));
1680 writer.println(prefix + pxToDpStr("getCellLayoutWidth()", getCellLayoutWidth()));
Jon Miranda58561d42021-03-17 10:51:54 -04001681 }
1682
Alex Chaua6907dc2022-03-18 15:24:07 +00001683 private static Context getContext(Context c, Info info, int orientation, WindowBounds bounds) {
Sunny Goyal1890f672020-04-30 12:28:00 -07001684 Configuration config = new Configuration(c.getResources().getConfiguration());
1685 config.orientation = orientation;
Thales Lima425f6822022-05-10 13:44:58 -03001686 config.densityDpi = info.getDensityDpi();
Alex Chaua6907dc2022-03-18 15:24:07 +00001687 config.smallestScreenWidthDp = (int) info.smallestSizeDp(bounds);
Sunny Goyal1890f672020-04-30 12:28:00 -07001688 return c.createConfigurationContext(config);
Jon Mirandab28c4fc2017-06-20 10:58:36 -07001689 }
Sunny Goyalfde55052018-02-01 14:46:13 -08001690
1691 /**
1692 * Callback when a component changes the DeviceProfile associated with it, as a result of
1693 * configuration change
1694 */
1695 public interface OnDeviceProfileChangeListener {
1696
1697 /**
1698 * Called when the device profile is reassigned. Note that for layout and measurements, it
1699 * is sufficient to listen for inset changes. Use this callback when you need to perform
1700 * a one time operation.
1701 */
1702 void onDeviceProfileChanged(DeviceProfile dp);
1703 }
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001704
Sihua Mae04aa202022-07-18 12:43:56 -07001705 /**
1706 * Handler that deals with ItemInfo of the views for the DeviceProfile
1707 */
1708 @FunctionalInterface
1709 public interface ViewScaleProvider {
1710 /**
1711 * Get the scales from the view
1712 *
1713 * @param itemInfo The tag of the widget view
1714 * @return PointF instance containing the scale information, or null if using the default
1715 * app widget scale of this device profile.
1716 */
1717 @NonNull
1718 PointF getScaleFromItemInfo(@Nullable ItemInfo itemInfo);
1719 }
1720
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001721 public static class Builder {
1722 private Context mContext;
1723 private InvariantDeviceProfile mInv;
Sunny Goyalfd58da62020-08-11 12:06:49 -07001724 private Info mInfo;
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001725
Sunny Goyal19ff7282021-04-22 10:12:54 -07001726 private WindowBounds mWindowBounds;
Alex Chauab800f72022-12-13 17:46:06 +00001727 private boolean mIsMultiDisplay;
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001728
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001729 private boolean mIsMultiWindowMode = false;
Sunny Goyal19ff7282021-04-22 10:12:54 -07001730 private Boolean mTransposeLayoutWithOrientation;
Alex Chau6ed408f2022-03-04 12:58:05 +00001731 private Boolean mIsGestureMode;
Sihua Mae04aa202022-07-18 12:43:56 -07001732 private ViewScaleProvider mViewScaleProvider = null;
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001733
Sunny Goyal65190ae2022-08-02 14:16:26 -07001734 private SparseArray<DotRenderer> mDotRendererCache;
1735
Sunny Goyalfd58da62020-08-11 12:06:49 -07001736 public Builder(Context context, InvariantDeviceProfile inv, Info info) {
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001737 mContext = context;
1738 mInv = inv;
1739 mInfo = info;
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001740 }
1741
1742 public Builder setMultiWindowMode(boolean isMultiWindowMode) {
1743 mIsMultiWindowMode = isMultiWindowMode;
1744 return this;
1745 }
1746
Alex Chauab800f72022-12-13 17:46:06 +00001747 public Builder setIsMultiDisplay(boolean isMultiDisplay) {
1748 mIsMultiDisplay = isMultiDisplay;
Sunny Goyal19ff7282021-04-22 10:12:54 -07001749 return this;
1750 }
1751
Sunny Goyal65190ae2022-08-02 14:16:26 -07001752 public Builder setDotRendererCache(SparseArray<DotRenderer> dotRendererCache) {
1753 mDotRendererCache = dotRendererCache;
1754 return this;
1755 }
Sunny Goyal19ff7282021-04-22 10:12:54 -07001756
1757 public Builder setWindowBounds(WindowBounds bounds) {
1758 mWindowBounds = bounds;
Sunny Goyal0addbf02020-04-28 14:17:35 -07001759 return this;
1760 }
1761
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001762 public Builder setTransposeLayoutWithOrientation(boolean transposeLayoutWithOrientation) {
1763 mTransposeLayoutWithOrientation = transposeLayoutWithOrientation;
1764 return this;
1765 }
1766
Alex Chau6ed408f2022-03-04 12:58:05 +00001767 public Builder setGestureMode(boolean isGestureMode) {
1768 mIsGestureMode = isGestureMode;
1769 return this;
1770 }
1771
Sihua Mae04aa202022-07-18 12:43:56 -07001772 /**
1773 * Set the viewScaleProvider for the builder
1774 *
1775 * @param viewScaleProvider The viewScaleProvider to be set for the
1776 * DeviceProfile
1777 * @return This builder
1778 */
1779 @NonNull
1780 public Builder setViewScaleProvider(@Nullable ViewScaleProvider viewScaleProvider) {
1781 mViewScaleProvider = viewScaleProvider;
1782 return this;
1783 }
1784
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001785 public DeviceProfile build() {
Sunny Goyal19ff7282021-04-22 10:12:54 -07001786 if (mWindowBounds == null) {
1787 throw new IllegalArgumentException("Window bounds not set");
1788 }
1789 if (mTransposeLayoutWithOrientation == null) {
1790 mTransposeLayoutWithOrientation = !mInfo.isTablet(mWindowBounds);
1791 }
Alex Chau6ed408f2022-03-04 12:58:05 +00001792 if (mIsGestureMode == null) {
Alex Chaue818bcb2022-09-02 17:27:11 +01001793 mIsGestureMode = mInfo.navigationMode.hasGestures;
Alex Chau6ed408f2022-03-04 12:58:05 +00001794 }
Sunny Goyal65190ae2022-08-02 14:16:26 -07001795 if (mDotRendererCache == null) {
1796 mDotRendererCache = new SparseArray<>();
1797 }
Sihua Mae04aa202022-07-18 12:43:56 -07001798 if (mViewScaleProvider == null) {
1799 mViewScaleProvider = DEFAULT_PROVIDER;
1800 }
Sunny Goyal65190ae2022-08-02 14:16:26 -07001801 return new DeviceProfile(mContext, mInv, mInfo, mWindowBounds, mDotRendererCache,
Alex Chauab800f72022-12-13 17:46:06 +00001802 mIsMultiWindowMode, mTransposeLayoutWithOrientation, mIsMultiDisplay,
Sihua Mae04aa202022-07-18 12:43:56 -07001803 mIsGestureMode, mViewScaleProvider);
Sunny Goyal0e7a3382020-04-13 17:15:05 -07001804 }
1805 }
1806
Winson Chungb3800242013-10-24 11:01:54 -07001807}