blob: d2d08639d48ba0f2b1948402489666a7f6c01a59 [file] [log] [blame]
Adam Cohen2e6da152015-05-06 11:42:25 -07001/*
2 * Copyright (C) 2015 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
Hyunyoung Songc55a3502018-12-04 15:43:16 -080019import static com.android.launcher3.Utilities.getDevicePrefs;
Sunny Goyal8b0cb412019-04-22 09:01:26 -070020import static com.android.launcher3.config.FeatureFlags.APPLY_CONFIG_AT_RUNTIME;
Jon Miranda6f7e9702019-09-16 14:44:14 -070021import static com.android.launcher3.settings.SettingsActivity.GRID_OPTIONS_PREFERENCE_KEY;
Sunny Goyal9c2b9602020-01-07 13:07:55 -080022import static com.android.launcher3.util.Executors.MAIN_EXECUTOR;
Sunny Goyal8b0cb412019-04-22 09:01:26 -070023import static com.android.launcher3.util.PackageManagerHelper.getPackageFilter;
Sunny Goyal87dc48b2018-10-12 11:42:33 -070024
Sunny Goyalc6205602015-05-21 20:46:33 -070025import android.annotation.TargetApi;
Sunny Goyal58fa4b62019-03-22 16:23:25 -070026import android.appwidget.AppWidgetHostView;
Hyunyoung Songe11eb472019-03-19 15:05:21 -070027import android.content.BroadcastReceiver;
Sunny Goyal58fa4b62019-03-22 16:23:25 -070028import android.content.ComponentName;
Adam Cohen2e6da152015-05-06 11:42:25 -070029import android.content.Context;
Hyunyoung Songe11eb472019-03-19 15:05:21 -070030import android.content.Intent;
Sunny Goyal27835952017-01-13 12:15:53 -080031import android.content.res.Configuration;
Hyunyoung Songc55a3502018-12-04 15:43:16 -080032import android.content.res.Resources;
Sunny Goyal819e1932016-07-07 16:43:58 -070033import android.content.res.TypedArray;
34import android.content.res.XmlResourceParser;
Adam Cohen2e6da152015-05-06 11:42:25 -070035import android.graphics.Point;
Sunny Goyal58fa4b62019-03-22 16:23:25 -070036import android.graphics.Rect;
Sunny Goyal415f1732018-11-29 10:33:47 -080037import android.text.TextUtils;
38import android.util.AttributeSet;
Adam Cohen2e6da152015-05-06 11:42:25 -070039import android.util.DisplayMetrics;
Sunny Goyal87dc48b2018-10-12 11:42:33 -070040import android.util.Log;
Sunny Goyal5bc18462019-01-07 15:13:39 -080041import android.util.SparseArray;
42import android.util.TypedValue;
Sunny Goyal819e1932016-07-07 16:43:58 -070043import android.util.Xml;
Sunny Goyal9c2b9602020-01-07 13:07:55 -080044import android.view.Display;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070045
Sunny Goyal6fe3eec2019-08-15 14:53:41 -070046import androidx.annotation.Nullable;
47import androidx.annotation.VisibleForTesting;
48
Sunny Goyal905262c2019-05-03 16:50:43 -070049import com.android.launcher3.graphics.IconShape;
Sunny Goyald0e360a2018-06-29 14:40:18 -070050import com.android.launcher3.util.ConfigMonitor;
Winson Chung13c1c2c2019-09-06 11:46:19 -070051import com.android.launcher3.util.DefaultDisplay;
Sunny Goyal9c2b9602020-01-07 13:07:55 -080052import com.android.launcher3.util.DefaultDisplay.Info;
Sunny Goyal5bc18462019-01-07 15:13:39 -080053import com.android.launcher3.util.IntArray;
Sunny Goyald0e360a2018-06-29 14:40:18 -070054import com.android.launcher3.util.MainThreadInitializedObject;
Sunny Goyal5bc18462019-01-07 15:13:39 -080055import com.android.launcher3.util.Themes;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070056
Sunny Goyal819e1932016-07-07 16:43:58 -070057import org.xmlpull.v1.XmlPullParser;
58import org.xmlpull.v1.XmlPullParserException;
59
60import java.io.IOException;
Adam Cohen2e6da152015-05-06 11:42:25 -070061import java.util.ArrayList;
Sunny Goyal6d55f662019-01-02 12:13:43 -080062import java.util.Collections;
Adam Cohen2e6da152015-05-06 11:42:25 -070063
64public class InvariantDeviceProfile {
Adam Cohen2e6da152015-05-06 11:42:25 -070065
Hyunyoung Songc55a3502018-12-04 15:43:16 -080066 public static final String TAG = "IDP";
Sunny Goyald0e360a2018-06-29 14:40:18 -070067 // We do not need any synchronization for this variable as its only written on UI thread.
68 public static final MainThreadInitializedObject<InvariantDeviceProfile> INSTANCE =
Sunny Goyal87dc48b2018-10-12 11:42:33 -070069 new MainThreadInitializedObject<>(InvariantDeviceProfile::new);
Adam Cohen2e6da152015-05-06 11:42:25 -070070
Hyunyoung Songc55a3502018-12-04 15:43:16 -080071 private static final String KEY_IDP_GRID_NAME = "idp_grid_name";
Sunny Goyal415f1732018-11-29 10:33:47 -080072
Sunny Goyal53d7ee42015-05-22 12:25:45 -070073 private static final float ICON_SIZE_DEFINED_IN_APP_DP = 48;
74
Sunny Goyal87dc48b2018-10-12 11:42:33 -070075 public static final int CHANGE_FLAG_GRID = 1 << 0;
Hyunyoung Songc55a3502018-12-04 15:43:16 -080076 public static final int CHANGE_FLAG_ICON_PARAMS = 1 << 1;
77
78 public static final String KEY_ICON_PATH_REF = "pref_icon_shape_path";
Sunny Goyal87dc48b2018-10-12 11:42:33 -070079
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070080 // Constants that affects the interpolation curve between statically defined device profile
81 // buckets.
Hyunyoung Songc55a3502018-12-04 15:43:16 -080082 private static final float KNEARESTNEIGHBOR = 3;
83 private static final float WEIGHT_POWER = 5;
Adam Cohen2e6da152015-05-06 11:42:25 -070084
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070085 // used to offset float not being able to express extremely small weights in extreme cases.
Hyunyoung Songc55a3502018-12-04 15:43:16 -080086 private static final float WEIGHT_EFFICIENT = 100000f;
87
88 private static final int CONFIG_ICON_MASK_RES_ID = Resources.getSystem().getIdentifier(
89 "config_icon_mask", "string", "android");
Adam Cohen2e6da152015-05-06 11:42:25 -070090
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070091 /**
92 * Number of icons per row and column in the workspace.
93 */
Adam Cohen2e6da152015-05-06 11:42:25 -070094 public int numRows;
95 public int numColumns;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070096
97 /**
98 * Number of icons per row and column in the folder.
99 */
Adam Cohen2e6da152015-05-06 11:42:25 -0700100 public int numFolderRows;
101 public int numFolderColumns;
Sunny Goyalfc218302015-09-17 14:59:10 -0700102 public float iconSize;
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800103 public String iconShapePath;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700104 public float landscapeIconSize;
Sunny Goyalfc218302015-09-17 14:59:10 -0700105 public int iconBitmapSize;
106 public int fillResIconDpi;
107 public float iconTextSize;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000108 public float allAppsIconSize;
109 public float allAppsIconTextSize;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700110
Sunny Goyal5bc18462019-01-07 15:13:39 -0800111 private SparseArray<TypedValue> mExtraAttrs;
112
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700113 /**
114 * Number of icons inside the hotseat area.
115 */
Sunny Goyalf862a262015-12-14 14:27:38 -0800116 public int numHotseatIcons;
Adam Cohen27824492017-09-22 17:10:55 -0700117
Jon Miranda6f7e9702019-09-16 14:44:14 -0700118 /**
119 * Number of columns in the all apps list.
120 */
121 public int numAllAppsColumns;
122
Tracy Zhou7df93d22020-01-27 13:44:06 -0800123 public String dbFile;
Sunny Goyal415f1732018-11-29 10:33:47 -0800124 public int defaultLayoutId;
Adam Cohen27824492017-09-22 17:10:55 -0700125 int demoModeLayoutId;
Adam Cohen2e6da152015-05-06 11:42:25 -0700126
cuijiaxingabda8d72017-03-20 09:51:36 -0700127 public DeviceProfile landscapeProfile;
128 public DeviceProfile portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -0700129
Sunny Goyal6f866092016-03-17 17:04:15 -0700130 public Point defaultWallpaperSize;
Sunny Goyal58fa4b62019-03-22 16:23:25 -0700131 public Rect defaultWidgetPadding;
Sunny Goyal6f866092016-03-17 17:04:15 -0700132
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700133 private final ArrayList<OnIDPChangeListener> mChangeListeners = new ArrayList<>();
134 private ConfigMonitor mConfigMonitor;
Hyunyoung Songe11eb472019-03-19 15:05:21 -0700135 private OverlayMonitor mOverlayMonitor;
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700136
Sunny Goyalf633ef52018-03-13 09:57:05 -0700137 @VisibleForTesting
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700138 public InvariantDeviceProfile() {}
Adam Cohen2e6da152015-05-06 11:42:25 -0700139
Sunny Goyalf633ef52018-03-13 09:57:05 -0700140 private InvariantDeviceProfile(InvariantDeviceProfile p) {
Sunny Goyal415f1732018-11-29 10:33:47 -0800141 numRows = p.numRows;
142 numColumns = p.numColumns;
143 numFolderRows = p.numFolderRows;
144 numFolderColumns = p.numFolderColumns;
145 iconSize = p.iconSize;
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800146 iconShapePath = p.iconShapePath;
Sunny Goyal415f1732018-11-29 10:33:47 -0800147 landscapeIconSize = p.landscapeIconSize;
148 iconTextSize = p.iconTextSize;
149 numHotseatIcons = p.numHotseatIcons;
Jon Miranda6f7e9702019-09-16 14:44:14 -0700150 numAllAppsColumns = p.numAllAppsColumns;
Tracy Zhou7df93d22020-01-27 13:44:06 -0800151 dbFile = p.dbFile;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000152 allAppsIconSize = p.allAppsIconSize;
153 allAppsIconTextSize = p.allAppsIconTextSize;
Sunny Goyal415f1732018-11-29 10:33:47 -0800154 defaultLayoutId = p.defaultLayoutId;
155 demoModeLayoutId = p.demoModeLayoutId;
Sunny Goyal5bc18462019-01-07 15:13:39 -0800156 mExtraAttrs = p.mExtraAttrs;
Hyunyoung Songe11eb472019-03-19 15:05:21 -0700157 mOverlayMonitor = p.mOverlayMonitor;
Adam Cohen2e6da152015-05-06 11:42:25 -0700158 }
159
Sunny Goyalbbf01842015-10-08 07:41:15 -0700160 @TargetApi(23)
Sunny Goyald0e360a2018-06-29 14:40:18 -0700161 private InvariantDeviceProfile(Context context) {
Sunny Goyalae190ff2020-04-14 00:19:01 +0000162 String gridName = Utilities.getPrefs(context).getBoolean(GRID_OPTIONS_PREFERENCE_KEY, false)
163 ? Utilities.getPrefs(context).getString(KEY_IDP_GRID_NAME, null)
164 : null;
Jon Miranda6f7e9702019-09-16 14:44:14 -0700165 initGrid(context, gridName);
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700166 mConfigMonitor = new ConfigMonitor(context,
167 APPLY_CONFIG_AT_RUNTIME.get() ? this::onConfigChanged : this::killProcess);
Hyunyoung Songe11eb472019-03-19 15:05:21 -0700168 mOverlayMonitor = new OverlayMonitor(context);
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700169 }
170
Hyunyoung Songe11eb472019-03-19 15:05:21 -0700171 /**
172 * This constructor should NOT have any monitors by design.
173 */
Sunny Goyaleff44f32019-01-09 17:29:49 -0800174 public InvariantDeviceProfile(Context context, String gridName) {
175 String newName = initGrid(context, gridName);
176 if (newName == null || !newName.equals(gridName)) {
177 throw new IllegalArgumentException("Unknown grid name");
178 }
179 }
180
Sunny Goyalae190ff2020-04-14 00:19:01 +0000181/**
Sunny Goyal9c2b9602020-01-07 13:07:55 -0800182 * This constructor should NOT have any monitors by design.
183 */
184 public InvariantDeviceProfile(Context context, Display display) {
185 initGrid(context, null, new Info(display));
186 }
187
Tracy Zhou42255d22020-03-13 00:38:11 -0700188 public static String getCurrentGridName(Context context) {
189 return Utilities.getPrefs(context).getBoolean(GRID_OPTIONS_PREFERENCE_KEY, false)
190 ? Utilities.getPrefs(context).getString(KEY_IDP_GRID_NAME, null)
191 : null;
192 }
193
Sunny Goyal9c2b9602020-01-07 13:07:55 -0800194 /**
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800195 * Retrieve system defined or RRO overriden icon shape.
196 */
197 private static String getIconShapePath(Context context) {
198 if (CONFIG_ICON_MASK_RES_ID == 0) {
199 Log.e(TAG, "Icon mask res identifier failed to retrieve.");
200 return "";
201 }
202 return context.getResources().getString(CONFIG_ICON_MASK_RES_ID);
203 }
204
Sunny Goyaleff44f32019-01-09 17:29:49 -0800205 private String initGrid(Context context, String gridName) {
Sunny Goyal9c2b9602020-01-07 13:07:55 -0800206 return initGrid(context, gridName, DefaultDisplay.INSTANCE.get(context).getInfo());
207 }
Adam Cohen2e6da152015-05-06 11:42:25 -0700208
Sunny Goyal9c2b9602020-01-07 13:07:55 -0800209 private String initGrid(Context context, String gridName, DefaultDisplay.Info displayInfo) {
Winson Chung13c1c2c2019-09-06 11:46:19 -0700210 Point smallestSize = new Point(displayInfo.smallestSize);
211 Point largestSize = new Point(displayInfo.largestSize);
Adam Cohen2e6da152015-05-06 11:42:25 -0700212
Sunny Goyalae190ff2020-04-14 00:19:01 +0000213 ArrayList<DisplayOption> allOptions = getPredefinedDeviceProfiles(context, gridName);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700214 // This guarantees that width < height
Winson Chung13c1c2c2019-09-06 11:46:19 -0700215 float minWidthDps = Utilities.dpiFromPx(Math.min(smallestSize.x, smallestSize.y),
216 displayInfo.metrics);
217 float minHeightDps = Utilities.dpiFromPx(Math.min(largestSize.x, largestSize.y),
218 displayInfo.metrics);
Sunny Goyalae190ff2020-04-14 00:19:01 +0000219 // Sort the profiles based on the closeness to the device size
220 Collections.sort(allOptions, (a, b) ->
221 Float.compare(dist(minWidthDps, minHeightDps, a.minWidthDps, a.minHeightDps),
222 dist(minWidthDps, minHeightDps, b.minWidthDps, b.minHeightDps)));
223 DisplayOption interpolatedDisplayOption =
224 invDistWeightedInterpolate(minWidthDps, minHeightDps, allOptions);
225
226 GridOption closestProfile = allOptions.get(0).grid;
227 numRows = closestProfile.numRows;
228 numColumns = closestProfile.numColumns;
229 numHotseatIcons = closestProfile.numHotseatIcons;
230 dbFile = closestProfile.dbFile;
231 defaultLayoutId = closestProfile.defaultLayoutId;
232 demoModeLayoutId = closestProfile.demoModeLayoutId;
233 numFolderRows = closestProfile.numFolderRows;
234 numFolderColumns = closestProfile.numFolderColumns;
235 numAllAppsColumns = closestProfile.numAllAppsColumns;
236
237 mExtraAttrs = closestProfile.extraAttrs;
238
239 if (!closestProfile.name.equals(gridName)) {
240 Utilities.getPrefs(context).edit()
241 .putString(KEY_IDP_GRID_NAME, closestProfile.name).apply();
242 }
243
244 iconSize = interpolatedDisplayOption.iconSize;
245 iconShapePath = getIconShapePath(context);
246 landscapeIconSize = interpolatedDisplayOption.landscapeIconSize;
247 iconBitmapSize = ResourceUtils.pxFromDp(iconSize, displayInfo.metrics);
248 iconTextSize = interpolatedDisplayOption.iconTextSize;
249 fillResIconDpi = getLauncherIconDensity(iconBitmapSize);
250
251 if (Utilities.getPrefs(context).getBoolean(GRID_OPTIONS_PREFERENCE_KEY, false)) {
252 allAppsIconSize = interpolatedDisplayOption.allAppsIconSize;
253 allAppsIconTextSize = interpolatedDisplayOption.allAppsIconTextSize;
254 } else {
255 allAppsIconSize = iconSize;
256 allAppsIconTextSize = iconTextSize;
257 }
258
259 // If the partner customization apk contains any grid overrides, apply them
260 // Supported overrides: numRows, numColumns, iconSize
261 applyPartnerDeviceProfileOverrides(context, displayInfo.metrics);
Sunny Goyalc6205602015-05-21 20:46:33 -0700262
Winson Chung13c1c2c2019-09-06 11:46:19 -0700263 Point realSize = new Point(displayInfo.realSize);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700264 // The real size never changes. smallSide and largeSide will remain the
Sunny Goyalc6205602015-05-21 20:46:33 -0700265 // same in any orientation.
266 int smallSide = Math.min(realSize.x, realSize.y);
267 int largeSide = Math.max(realSize.x, realSize.y);
268
Sunny Goyalae190ff2020-04-14 00:19:01 +0000269 landscapeProfile = new DeviceProfile(context, this, smallestSize, largestSize,
270 largeSide, smallSide, true /* isLandscape */, false /* isMultiWindowMode */);
271 portraitProfile = new DeviceProfile(context, this, smallestSize, largestSize,
272 smallSide, largeSide, false /* isLandscape */, false /* isMultiWindowMode */);
Sunny Goyal6f866092016-03-17 17:04:15 -0700273
274 // We need to ensure that there is enough extra space in the wallpaper
275 // for the intended parallax effects
276 if (context.getResources().getConfiguration().smallestScreenWidthDp >= 720) {
277 defaultWallpaperSize = new Point(
278 (int) (largeSide * wallpaperTravelToScreenWidthRatio(largeSide, smallSide)),
279 largeSide);
280 } else {
281 defaultWallpaperSize = new Point(Math.max(smallSide * 2, largeSide), largeSide);
282 }
Sunny Goyal58fa4b62019-03-22 16:23:25 -0700283
284 ComponentName cn = new ComponentName(context.getPackageName(), getClass().getName());
285 defaultWidgetPadding = AppWidgetHostView.getDefaultPaddingForWidget(context, cn, null);
286
Sunny Goyaleff44f32019-01-09 17:29:49 -0800287 return closestProfile.name;
Adam Cohen2e6da152015-05-06 11:42:25 -0700288 }
289
Sunny Goyal5bc18462019-01-07 15:13:39 -0800290 @Nullable
291 public TypedValue getAttrValue(int attr) {
292 return mExtraAttrs == null ? null : mExtraAttrs.get(attr);
293 }
294
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700295 public void addOnChangeListener(OnIDPChangeListener listener) {
296 mChangeListeners.add(listener);
297 }
298
Hyunyoung Songb4d1ca42019-01-08 17:15:16 -0800299 public void removeOnChangeListener(OnIDPChangeListener listener) {
300 mChangeListeners.remove(listener);
301 }
302
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700303 private void killProcess(Context context) {
304 Log.e("ConfigMonitor", "restarting launcher");
305 android.os.Process.killProcess(android.os.Process.myPid());
306 }
307
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800308 public void verifyConfigChangedInBackground(final Context context) {
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800309 String savedIconMaskPath = getDevicePrefs(context).getString(KEY_ICON_PATH_REF, "");
310 // Good place to check if grid size changed in themepicker when launcher was dead.
311 if (savedIconMaskPath.isEmpty()) {
312 getDevicePrefs(context).edit().putString(KEY_ICON_PATH_REF, getIconShapePath(context))
313 .apply();
314 } else if (!savedIconMaskPath.equals(getIconShapePath(context))) {
315 getDevicePrefs(context).edit().putString(KEY_ICON_PATH_REF, getIconShapePath(context))
316 .apply();
317 apply(context, CHANGE_FLAG_ICON_PARAMS);
318 }
319 }
320
Sunny Goyal7d892ff2019-01-11 15:08:44 -0800321 public void setCurrentGrid(Context context, String gridName) {
322 Context appContext = context.getApplicationContext();
323 Utilities.getPrefs(appContext).edit().putString(KEY_IDP_GRID_NAME, gridName).apply();
Sunny Goyal6fe3eec2019-08-15 14:53:41 -0700324 MAIN_EXECUTOR.execute(() -> onConfigChanged(appContext));
Sunny Goyal7d892ff2019-01-11 15:08:44 -0800325 }
326
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700327 private void onConfigChanged(Context context) {
328 // Config changes, what shall we do?
329 InvariantDeviceProfile oldProfile = new InvariantDeviceProfile(this);
330
331 // Re-init grid
Jon Miranda6f7e9702019-09-16 14:44:14 -0700332 String gridName = Utilities.getPrefs(context).getBoolean(GRID_OPTIONS_PREFERENCE_KEY, false)
333 ? Utilities.getPrefs(context).getString(KEY_IDP_GRID_NAME, null)
334 : null;
335 initGrid(context, gridName);
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700336
337 int changeFlags = 0;
338 if (numRows != oldProfile.numRows ||
339 numColumns != oldProfile.numColumns ||
340 numFolderColumns != oldProfile.numFolderColumns ||
341 numFolderRows != oldProfile.numFolderRows ||
342 numHotseatIcons != oldProfile.numHotseatIcons) {
343 changeFlags |= CHANGE_FLAG_GRID;
344 }
345
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800346 if (iconSize != oldProfile.iconSize || iconBitmapSize != oldProfile.iconBitmapSize ||
347 !iconShapePath.equals(oldProfile.iconShapePath)) {
348 changeFlags |= CHANGE_FLAG_ICON_PARAMS;
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700349 }
Sunny Goyal90e3fbc2019-01-23 16:42:43 -0800350 if (!iconShapePath.equals(oldProfile.iconShapePath)) {
Sunny Goyal905262c2019-05-03 16:50:43 -0700351 IconShape.init(context);
Sunny Goyal90e3fbc2019-01-23 16:42:43 -0800352 }
353
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800354 apply(context, changeFlags);
355 }
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700356
Hyunyoung Songc55a3502018-12-04 15:43:16 -0800357 private void apply(Context context, int changeFlags) {
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700358 // Create a new config monitor
359 mConfigMonitor.unregister();
360 mConfigMonitor = new ConfigMonitor(context, this::onConfigChanged);
361
362 for (OnIDPChangeListener listener : mChangeListeners) {
363 listener.onIdpChanged(changeFlags, this);
364 }
365 }
366
Sunny Goyalae190ff2020-04-14 00:19:01 +0000367 static ArrayList<DisplayOption> getPredefinedDeviceProfiles(Context context, String gridName) {
Sunny Goyal415f1732018-11-29 10:33:47 -0800368 ArrayList<DisplayOption> profiles = new ArrayList<>();
Sunny Goyal819e1932016-07-07 16:43:58 -0700369 try (XmlResourceParser parser = context.getResources().getXml(R.xml.device_profiles)) {
370 final int depth = parser.getDepth();
371 int type;
Sunny Goyal819e1932016-07-07 16:43:58 -0700372 while (((type = parser.next()) != XmlPullParser.END_TAG ||
373 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
Sunny Goyal7d892ff2019-01-11 15:08:44 -0800374 if ((type == XmlPullParser.START_TAG)
375 && GridOption.TAG_NAME.equals(parser.getName())) {
Sunny Goyal415f1732018-11-29 10:33:47 -0800376
377 GridOption gridOption = new GridOption(context, Xml.asAttributeSet(parser));
378 final int displayDepth = parser.getDepth();
379 while (((type = parser.next()) != XmlPullParser.END_TAG ||
380 parser.getDepth() > displayDepth)
381 && type != XmlPullParser.END_DOCUMENT) {
382 if ((type == XmlPullParser.START_TAG) && "display-option".equals(
383 parser.getName())) {
384 profiles.add(new DisplayOption(
385 gridOption, context, Xml.asAttributeSet(parser)));
386 }
387 }
Sunny Goyal819e1932016-07-07 16:43:58 -0700388 }
389 }
390 } catch (IOException|XmlPullParserException e) {
391 throw new RuntimeException(e);
392 }
Sunny Goyal415f1732018-11-29 10:33:47 -0800393
Sunny Goyalae190ff2020-04-14 00:19:01 +0000394 ArrayList<DisplayOption> filteredProfiles = new ArrayList<>();
Sunny Goyal415f1732018-11-29 10:33:47 -0800395 if (!TextUtils.isEmpty(gridName)) {
396 for (DisplayOption option : profiles) {
397 if (gridName.equals(option.grid.name)) {
Sunny Goyalae190ff2020-04-14 00:19:01 +0000398 filteredProfiles.add(option);
Sunny Goyal415f1732018-11-29 10:33:47 -0800399 }
400 }
401 }
Sunny Goyalae190ff2020-04-14 00:19:01 +0000402 if (filteredProfiles.isEmpty()) {
403 // No grid found, use the default options
404 for (DisplayOption option : profiles) {
405 if (option.canBeDefault) {
406 filteredProfiles.add(option);
407 }
Sunny Goyal415f1732018-11-29 10:33:47 -0800408 }
409 }
Sunny Goyalae190ff2020-04-14 00:19:01 +0000410 if (filteredProfiles.isEmpty()) {
411 throw new RuntimeException("No display option with canBeDefault=true");
412 }
413 return filteredProfiles;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700414 }
415
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700416 private int getLauncherIconDensity(int requiredSize) {
417 // Densities typically defined by an app.
418 int[] densityBuckets = new int[] {
419 DisplayMetrics.DENSITY_LOW,
420 DisplayMetrics.DENSITY_MEDIUM,
421 DisplayMetrics.DENSITY_TV,
422 DisplayMetrics.DENSITY_HIGH,
423 DisplayMetrics.DENSITY_XHIGH,
424 DisplayMetrics.DENSITY_XXHIGH,
425 DisplayMetrics.DENSITY_XXXHIGH
426 };
427
428 int density = DisplayMetrics.DENSITY_XXXHIGH;
429 for (int i = densityBuckets.length - 1; i >= 0; i--) {
430 float expectedSize = ICON_SIZE_DEFINED_IN_APP_DP * densityBuckets[i]
431 / DisplayMetrics.DENSITY_DEFAULT;
432 if (expectedSize >= requiredSize) {
433 density = densityBuckets[i];
434 }
435 }
436
437 return density;
438 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700439
Adam Cohen2e6da152015-05-06 11:42:25 -0700440 /**
441 * Apply any Partner customization grid overrides.
442 *
443 * Currently we support: all apps row / column count.
444 */
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700445 private void applyPartnerDeviceProfileOverrides(Context context, DisplayMetrics dm) {
446 Partner p = Partner.get(context.getPackageManager());
Adam Cohen2e6da152015-05-06 11:42:25 -0700447 if (p != null) {
448 p.applyInvariantDeviceProfileOverrides(this, dm);
449 }
450 }
451
Sunny Goyal415f1732018-11-29 10:33:47 -0800452 private static float dist(float x0, float y0, float x1, float y1) {
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700453 return (float) Math.hypot(x1 - x0, y1 - y0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700454 }
455
Sunny Goyal415f1732018-11-29 10:33:47 -0800456 @VisibleForTesting
457 static DisplayOption invDistWeightedInterpolate(float width, float height,
Sunny Goyalae190ff2020-04-14 00:19:01 +0000458 ArrayList<DisplayOption> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700459 float weights = 0;
Adam Cohen2e6da152015-05-06 11:42:25 -0700460
Sunny Goyal415f1732018-11-29 10:33:47 -0800461 DisplayOption p = points.get(0);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700462 if (dist(width, height, p.minWidthDps, p.minHeightDps) == 0) {
463 return p;
Adam Cohen2e6da152015-05-06 11:42:25 -0700464 }
465
Sunny Goyal415f1732018-11-29 10:33:47 -0800466 DisplayOption out = new DisplayOption();
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700467 for (int i = 0; i < points.size() && i < KNEARESTNEIGHBOR; ++i) {
Sunny Goyal415f1732018-11-29 10:33:47 -0800468 p = points.get(i);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700469 float w = weight(width, height, p.minWidthDps, p.minHeightDps, WEIGHT_POWER);
470 weights += w;
Sunny Goyal415f1732018-11-29 10:33:47 -0800471 out.add(new DisplayOption().add(p).multiply(w));
Adam Cohen2e6da152015-05-06 11:42:25 -0700472 }
Sunny Goyal415f1732018-11-29 10:33:47 -0800473 return out.multiply(1.0f / weights);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700474 }
475
Sunny Goyal27835952017-01-13 12:15:53 -0800476 public DeviceProfile getDeviceProfile(Context context) {
477 return context.getResources().getConfiguration().orientation
478 == Configuration.ORIENTATION_LANDSCAPE ? landscapeProfile : portraitProfile;
479 }
480
Sunny Goyal415f1732018-11-29 10:33:47 -0800481 private static float weight(float x0, float y0, float x1, float y1, float pow) {
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700482 float d = dist(x0, y0, x1, y1);
483 if (Float.compare(d, 0f) == 0) {
484 return Float.POSITIVE_INFINITY;
485 }
486 return (float) (WEIGHT_EFFICIENT / Math.pow(d, pow));
487 }
Sunny Goyal6f866092016-03-17 17:04:15 -0700488
489 /**
490 * As a ratio of screen height, the total distance we want the parallax effect to span
491 * horizontally
492 */
493 private static float wallpaperTravelToScreenWidthRatio(int width, int height) {
494 float aspectRatio = width / (float) height;
495
496 // At an aspect ratio of 16/10, the wallpaper parallax effect should span 1.5 * screen width
497 // At an aspect ratio of 10/16, the wallpaper parallax effect should span 1.2 * screen width
498 // We will use these two data points to extrapolate how much the wallpaper parallax effect
499 // to span (ie travel) at any aspect ratio:
500
501 final float ASPECT_RATIO_LANDSCAPE = 16/10f;
502 final float ASPECT_RATIO_PORTRAIT = 10/16f;
503 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE = 1.5f;
504 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT = 1.2f;
505
506 // To find out the desired width at different aspect ratios, we use the following two
507 // formulas, where the coefficient on x is the aspect ratio (width/height):
508 // (16/10)x + y = 1.5
509 // (10/16)x + y = 1.2
510 // We solve for x and y and end up with a final formula:
511 final float x =
512 (WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE - WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT) /
513 (ASPECT_RATIO_LANDSCAPE - ASPECT_RATIO_PORTRAIT);
514 final float y = WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT - x * ASPECT_RATIO_PORTRAIT;
515 return x * aspectRatio + y;
516 }
517
Sunny Goyal87dc48b2018-10-12 11:42:33 -0700518 public interface OnIDPChangeListener {
519
520 void onIdpChanged(int changeFlags, InvariantDeviceProfile profile);
521 }
Sunny Goyal415f1732018-11-29 10:33:47 -0800522
523
Sunny Goyaleff44f32019-01-09 17:29:49 -0800524 public static final class GridOption {
Sunny Goyal415f1732018-11-29 10:33:47 -0800525
Sunny Goyal7d892ff2019-01-11 15:08:44 -0800526 public static final String TAG_NAME = "grid-option";
527
Sunny Goyaleff44f32019-01-09 17:29:49 -0800528 public final String name;
529 public final int numRows;
530 public final int numColumns;
Sunny Goyal415f1732018-11-29 10:33:47 -0800531
532 private final int numFolderRows;
533 private final int numFolderColumns;
534
535 private final int numHotseatIcons;
536
Tracy Zhou7df93d22020-01-27 13:44:06 -0800537 private final String dbFile;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000538 private final int numAllAppsColumns;
539
Sunny Goyal415f1732018-11-29 10:33:47 -0800540 private final int defaultLayoutId;
541 private final int demoModeLayoutId;
542
Sunny Goyal5bc18462019-01-07 15:13:39 -0800543 private final SparseArray<TypedValue> extraAttrs;
544
Sunny Goyaleff44f32019-01-09 17:29:49 -0800545 public GridOption(Context context, AttributeSet attrs) {
Sunny Goyal415f1732018-11-29 10:33:47 -0800546 TypedArray a = context.obtainStyledAttributes(
547 attrs, R.styleable.GridDisplayOption);
548 name = a.getString(R.styleable.GridDisplayOption_name);
549 numRows = a.getInt(R.styleable.GridDisplayOption_numRows, 0);
550 numColumns = a.getInt(R.styleable.GridDisplayOption_numColumns, 0);
551
Tracy Zhou7df93d22020-01-27 13:44:06 -0800552 dbFile = a.getString(R.styleable.GridDisplayOption_dbFile);
Sunny Goyal415f1732018-11-29 10:33:47 -0800553 defaultLayoutId = a.getResourceId(
554 R.styleable.GridDisplayOption_defaultLayoutId, 0);
555 demoModeLayoutId = a.getResourceId(
556 R.styleable.GridDisplayOption_demoModeLayoutId, defaultLayoutId);
557 numHotseatIcons = a.getInt(
558 R.styleable.GridDisplayOption_numHotseatIcons, numColumns);
559 numFolderRows = a.getInt(
560 R.styleable.GridDisplayOption_numFolderRows, numRows);
561 numFolderColumns = a.getInt(
562 R.styleable.GridDisplayOption_numFolderColumns, numColumns);
Sunny Goyalae190ff2020-04-14 00:19:01 +0000563 numAllAppsColumns = a.getInt(
564 R.styleable.GridDisplayOption_numAllAppsColumns, numColumns);
Jon Miranda6f7e9702019-09-16 14:44:14 -0700565
Sunny Goyal415f1732018-11-29 10:33:47 -0800566 a.recycle();
Sunny Goyal5bc18462019-01-07 15:13:39 -0800567
568 extraAttrs = Themes.createValueMap(context, attrs,
569 IntArray.wrap(R.styleable.GridDisplayOption));
Sunny Goyal415f1732018-11-29 10:33:47 -0800570 }
571 }
572
573 private static final class DisplayOption {
574 private final GridOption grid;
575
576 private final String name;
577 private final float minWidthDps;
578 private final float minHeightDps;
579 private final boolean canBeDefault;
580
581 private float iconSize;
Sunny Goyal415f1732018-11-29 10:33:47 -0800582 private float iconTextSize;
Jon Miranda6f7e9702019-09-16 14:44:14 -0700583 private float landscapeIconSize;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000584 private float allAppsIconSize;
585 private float allAppsIconTextSize;
Sunny Goyal415f1732018-11-29 10:33:47 -0800586
587 DisplayOption(GridOption grid, Context context, AttributeSet attrs) {
588 this.grid = grid;
589
590 TypedArray a = context.obtainStyledAttributes(
591 attrs, R.styleable.ProfileDisplayOption);
592
593 name = a.getString(R.styleable.ProfileDisplayOption_name);
594 minWidthDps = a.getFloat(R.styleable.ProfileDisplayOption_minWidthDps, 0);
595 minHeightDps = a.getFloat(R.styleable.ProfileDisplayOption_minHeightDps, 0);
596 canBeDefault = a.getBoolean(
597 R.styleable.ProfileDisplayOption_canBeDefault, false);
598
Ryan Mitchell01b8b682019-03-28 17:01:07 -0700599 iconSize = a.getFloat(R.styleable.ProfileDisplayOption_iconImageSize, 0);
Sunny Goyal415f1732018-11-29 10:33:47 -0800600 landscapeIconSize = a.getFloat(R.styleable.ProfileDisplayOption_landscapeIconSize,
601 iconSize);
602 iconTextSize = a.getFloat(R.styleable.ProfileDisplayOption_iconTextSize, 0);
Jon Miranda6f7e9702019-09-16 14:44:14 -0700603
Sunny Goyalae190ff2020-04-14 00:19:01 +0000604 allAppsIconSize = a.getFloat(R.styleable.ProfileDisplayOption_allAppsIconSize,
605 iconSize);
606 allAppsIconTextSize = a.getFloat(R.styleable.ProfileDisplayOption_allAppsIconTextSize,
607 iconTextSize);
Sunny Goyal415f1732018-11-29 10:33:47 -0800608 a.recycle();
609 }
610
611 DisplayOption() {
612 grid = null;
613 name = null;
614 minWidthDps = 0;
615 minHeightDps = 0;
616 canBeDefault = false;
617 }
618
619 private DisplayOption multiply(float w) {
620 iconSize *= w;
621 landscapeIconSize *= w;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000622 allAppsIconSize *= w;
Sunny Goyal415f1732018-11-29 10:33:47 -0800623 iconTextSize *= w;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000624 allAppsIconTextSize *= w;
Sunny Goyal415f1732018-11-29 10:33:47 -0800625 return this;
626 }
627
628 private DisplayOption add(DisplayOption p) {
629 iconSize += p.iconSize;
630 landscapeIconSize += p.landscapeIconSize;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000631 allAppsIconSize += p.allAppsIconSize;
Sunny Goyal415f1732018-11-29 10:33:47 -0800632 iconTextSize += p.iconTextSize;
Sunny Goyalae190ff2020-04-14 00:19:01 +0000633 allAppsIconTextSize += p.allAppsIconTextSize;
Sunny Goyal415f1732018-11-29 10:33:47 -0800634 return this;
635 }
636 }
Hyunyoung Songe11eb472019-03-19 15:05:21 -0700637
638 private class OverlayMonitor extends BroadcastReceiver {
639
640 private final String ACTION_OVERLAY_CHANGED = "android.intent.action.OVERLAY_CHANGED";
641
642 OverlayMonitor(Context context) {
Sunny Goyal8b0cb412019-04-22 09:01:26 -0700643 context.registerReceiver(this, getPackageFilter("android", ACTION_OVERLAY_CHANGED));
Hyunyoung Songe11eb472019-03-19 15:05:21 -0700644 }
645
646 @Override
647 public void onReceive(Context context, Intent intent) {
648 onConfigChanged(context);
649 }
650 }
Sunny Goyalae190ff2020-04-14 00:19:01 +0000651}