blob: 7a431986da6b674b91cca49d91e949953e666b24 [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
Sunny Goyalc6205602015-05-21 20:46:33 -070019import android.annotation.TargetApi;
Adam Cohen2e6da152015-05-06 11:42:25 -070020import android.content.Context;
Sunny Goyal27835952017-01-13 12:15:53 -080021import android.content.res.Configuration;
Sunny Goyal819e1932016-07-07 16:43:58 -070022import android.content.res.TypedArray;
23import android.content.res.XmlResourceParser;
Adam Cohen2e6da152015-05-06 11:42:25 -070024import android.graphics.Point;
Adam Cohen2e6da152015-05-06 11:42:25 -070025import android.util.DisplayMetrics;
Sunny Goyal819e1932016-07-07 16:43:58 -070026import android.util.Xml;
Adam Cohen2e6da152015-05-06 11:42:25 -070027import android.view.Display;
28import android.view.WindowManager;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070029
Sunny Goyalbb011da2016-06-15 15:42:29 -070030import com.android.launcher3.config.FeatureFlags;
Adam Cohen2e6da152015-05-06 11:42:25 -070031import com.android.launcher3.util.Thunk;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070032
Sunny Goyal819e1932016-07-07 16:43:58 -070033import org.xmlpull.v1.XmlPullParser;
34import org.xmlpull.v1.XmlPullParserException;
35
36import java.io.IOException;
Adam Cohen2e6da152015-05-06 11:42:25 -070037import java.util.ArrayList;
38import java.util.Collections;
39import java.util.Comparator;
40
41public class InvariantDeviceProfile {
Adam Cohen2e6da152015-05-06 11:42:25 -070042
43 // This is a static that we use for the default icon size on a 4/5-inch phone
Sunny Goyalc6205602015-05-21 20:46:33 -070044 private static float DEFAULT_ICON_SIZE_DP = 60;
Adam Cohen2e6da152015-05-06 11:42:25 -070045
Sunny Goyal53d7ee42015-05-22 12:25:45 -070046 private static final float ICON_SIZE_DEFINED_IN_APP_DP = 48;
47
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070048 // Constants that affects the interpolation curve between statically defined device profile
49 // buckets.
50 private static float KNEARESTNEIGHBOR = 3;
51 private static float WEIGHT_POWER = 5;
Adam Cohen2e6da152015-05-06 11:42:25 -070052
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070053 // used to offset float not being able to express extremely small weights in extreme cases.
54 private static float WEIGHT_EFFICIENT = 100000f;
Adam Cohen2e6da152015-05-06 11:42:25 -070055
56 // Profile-defining invariant properties
57 String name;
58 float minWidthDps;
59 float minHeightDps;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070060
61 /**
62 * Number of icons per row and column in the workspace.
63 */
Adam Cohen2e6da152015-05-06 11:42:25 -070064 public int numRows;
65 public int numColumns;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070066
67 /**
Winson Chung2c6e5cc2015-06-01 14:38:24 -070068 * The minimum number of predicted apps in all apps.
69 */
Winson1f064272016-07-18 17:18:02 -070070 @Deprecated
Winson Chung2c6e5cc2015-06-01 14:38:24 -070071 int minAllAppsPredictionColumns;
72
73 /**
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070074 * Number of icons per row and column in the folder.
75 */
Adam Cohen2e6da152015-05-06 11:42:25 -070076 public int numFolderRows;
77 public int numFolderColumns;
Sunny Goyalfc218302015-09-17 14:59:10 -070078 public float iconSize;
Jon Mirandab28c4fc2017-06-20 10:58:36 -070079 public float landscapeIconSize;
Sunny Goyalfc218302015-09-17 14:59:10 -070080 public int iconBitmapSize;
81 public int fillResIconDpi;
82 public float iconTextSize;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070083
84 /**
85 * Number of icons inside the hotseat area.
86 */
Sunny Goyalf862a262015-12-14 14:27:38 -080087 public int numHotseatIcons;
Adam Cohen27824492017-09-22 17:10:55 -070088
Adam Cohen2e6da152015-05-06 11:42:25 -070089 int defaultLayoutId;
Adam Cohen27824492017-09-22 17:10:55 -070090 int demoModeLayoutId;
Adam Cohen2e6da152015-05-06 11:42:25 -070091
cuijiaxingabda8d72017-03-20 09:51:36 -070092 public DeviceProfile landscapeProfile;
93 public DeviceProfile portraitProfile;
Sunny Goyalc6205602015-05-21 20:46:33 -070094
Sunny Goyal6f866092016-03-17 17:04:15 -070095 public Point defaultWallpaperSize;
96
Sunny Goyalf076eae2016-01-11 12:25:10 -080097 public InvariantDeviceProfile() {
Adam Cohen2e6da152015-05-06 11:42:25 -070098 }
99
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700100 public InvariantDeviceProfile(InvariantDeviceProfile p) {
101 this(p.name, p.minWidthDps, p.minHeightDps, p.numRows, p.numColumns,
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700102 p.numFolderRows, p.numFolderColumns, p.minAllAppsPredictionColumns,
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700103 p.iconSize, p.landscapeIconSize, p.iconTextSize, p.numHotseatIcons,
Adam Cohen27824492017-09-22 17:10:55 -0700104 p.defaultLayoutId, p.demoModeLayoutId);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700105 }
106
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700107 InvariantDeviceProfile(String n, float w, float h, int r, int c, int fr, int fc, int maapc,
Adam Cohen27824492017-09-22 17:10:55 -0700108 float is, float lis, float its, int hs, int dlId, int dmlId) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700109 name = n;
110 minWidthDps = w;
111 minHeightDps = h;
112 numRows = r;
113 numColumns = c;
114 numFolderRows = fr;
115 numFolderColumns = fc;
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700116 minAllAppsPredictionColumns = maapc;
Adam Cohen2e6da152015-05-06 11:42:25 -0700117 iconSize = is;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700118 landscapeIconSize = lis;
Adam Cohen2e6da152015-05-06 11:42:25 -0700119 iconTextSize = its;
120 numHotseatIcons = hs;
Adam Cohen2e6da152015-05-06 11:42:25 -0700121 defaultLayoutId = dlId;
Adam Cohen27824492017-09-22 17:10:55 -0700122 demoModeLayoutId = dmlId;
Adam Cohen2e6da152015-05-06 11:42:25 -0700123 }
124
Sunny Goyalbbf01842015-10-08 07:41:15 -0700125 @TargetApi(23)
Adam Cohen2e6da152015-05-06 11:42:25 -0700126 InvariantDeviceProfile(Context context) {
127 WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
128 Display display = wm.getDefaultDisplay();
129 DisplayMetrics dm = new DisplayMetrics();
130 display.getMetrics(dm);
131
132 Point smallestSize = new Point();
133 Point largestSize = new Point();
134 display.getCurrentSizeRange(smallestSize, largestSize);
135
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700136 // This guarantees that width < height
Adam Cohen2e6da152015-05-06 11:42:25 -0700137 minWidthDps = Utilities.dpiFromPx(Math.min(smallestSize.x, smallestSize.y), dm);
138 minHeightDps = Utilities.dpiFromPx(Math.min(largestSize.x, largestSize.y), dm);
139
Sunny Goyal819e1932016-07-07 16:43:58 -0700140 ArrayList<InvariantDeviceProfile> closestProfiles = findClosestDeviceProfiles(
141 minWidthDps, minHeightDps, getPredefinedDeviceProfiles(context));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700142 InvariantDeviceProfile interpolatedDeviceProfileOut =
143 invDistWeightedInterpolate(minWidthDps, minHeightDps, closestProfiles);
Adam Cohen2e6da152015-05-06 11:42:25 -0700144
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700145 InvariantDeviceProfile closestProfile = closestProfiles.get(0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700146 numRows = closestProfile.numRows;
147 numColumns = closestProfile.numColumns;
148 numHotseatIcons = closestProfile.numHotseatIcons;
Adam Cohen2e6da152015-05-06 11:42:25 -0700149 defaultLayoutId = closestProfile.defaultLayoutId;
Adam Cohen27824492017-09-22 17:10:55 -0700150 demoModeLayoutId = closestProfile.demoModeLayoutId;
Adam Cohen2e6da152015-05-06 11:42:25 -0700151 numFolderRows = closestProfile.numFolderRows;
152 numFolderColumns = closestProfile.numFolderColumns;
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700153 minAllAppsPredictionColumns = closestProfile.minAllAppsPredictionColumns;
Adam Cohen2e6da152015-05-06 11:42:25 -0700154
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700155 iconSize = interpolatedDeviceProfileOut.iconSize;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700156 landscapeIconSize = interpolatedDeviceProfileOut.landscapeIconSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700157 iconBitmapSize = Utilities.pxFromDp(iconSize, dm);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700158 iconTextSize = interpolatedDeviceProfileOut.iconTextSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700159 fillResIconDpi = getLauncherIconDensity(iconBitmapSize);
Adam Cohen2e6da152015-05-06 11:42:25 -0700160
161 // If the partner customization apk contains any grid overrides, apply them
162 // Supported overrides: numRows, numColumns, iconSize
163 applyPartnerDeviceProfileOverrides(context, dm);
Sunny Goyalc6205602015-05-21 20:46:33 -0700164
165 Point realSize = new Point();
166 display.getRealSize(realSize);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700167 // The real size never changes. smallSide and largeSide will remain the
Sunny Goyalc6205602015-05-21 20:46:33 -0700168 // same in any orientation.
169 int smallSide = Math.min(realSize.x, realSize.y);
170 int largeSide = Math.max(realSize.x, realSize.y);
171
172 landscapeProfile = new DeviceProfile(context, this, smallestSize, largestSize,
173 largeSide, smallSide, true /* isLandscape */);
174 portraitProfile = new DeviceProfile(context, this, smallestSize, largestSize,
175 smallSide, largeSide, false /* isLandscape */);
Sunny Goyal6f866092016-03-17 17:04:15 -0700176
177 // We need to ensure that there is enough extra space in the wallpaper
178 // for the intended parallax effects
179 if (context.getResources().getConfiguration().smallestScreenWidthDp >= 720) {
180 defaultWallpaperSize = new Point(
181 (int) (largeSide * wallpaperTravelToScreenWidthRatio(largeSide, smallSide)),
182 largeSide);
183 } else {
184 defaultWallpaperSize = new Point(Math.max(smallSide * 2, largeSide), largeSide);
185 }
Adam Cohen2e6da152015-05-06 11:42:25 -0700186 }
187
Sunny Goyal819e1932016-07-07 16:43:58 -0700188 ArrayList<InvariantDeviceProfile> getPredefinedDeviceProfiles(Context context) {
189 ArrayList<InvariantDeviceProfile> profiles = new ArrayList<>();
190 try (XmlResourceParser parser = context.getResources().getXml(R.xml.device_profiles)) {
191 final int depth = parser.getDepth();
192 int type;
193
194 while (((type = parser.next()) != XmlPullParser.END_TAG ||
195 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
196 if ((type == XmlPullParser.START_TAG) && "profile".equals(parser.getName())) {
197 TypedArray a = context.obtainStyledAttributes(
198 Xml.asAttributeSet(parser), R.styleable.InvariantDeviceProfile);
199 int numRows = a.getInt(R.styleable.InvariantDeviceProfile_numRows, 0);
200 int numColumns = a.getInt(R.styleable.InvariantDeviceProfile_numColumns, 0);
201 float iconSize = a.getFloat(R.styleable.InvariantDeviceProfile_iconSize, 0);
202 profiles.add(new InvariantDeviceProfile(
203 a.getString(R.styleable.InvariantDeviceProfile_name),
204 a.getFloat(R.styleable.InvariantDeviceProfile_minWidthDps, 0),
205 a.getFloat(R.styleable.InvariantDeviceProfile_minHeightDps, 0),
206 numRows,
207 numColumns,
208 a.getInt(R.styleable.InvariantDeviceProfile_numFolderRows, numRows),
209 a.getInt(R.styleable.InvariantDeviceProfile_numFolderColumns, numColumns),
210 a.getInt(R.styleable.InvariantDeviceProfile_minAllAppsPredictionColumns, numColumns),
211 iconSize,
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700212 a.getFloat(R.styleable.InvariantDeviceProfile_landscapeIconSize, iconSize),
Sunny Goyal819e1932016-07-07 16:43:58 -0700213 a.getFloat(R.styleable.InvariantDeviceProfile_iconTextSize, 0),
214 a.getInt(R.styleable.InvariantDeviceProfile_numHotseatIcons, numColumns),
Adam Cohen27824492017-09-22 17:10:55 -0700215 a.getResourceId(R.styleable.InvariantDeviceProfile_defaultLayoutId, 0),
216 a.getResourceId(R.styleable.InvariantDeviceProfile_demoModeLayoutId, 0)));
Sunny Goyal819e1932016-07-07 16:43:58 -0700217 a.recycle();
218 }
219 }
220 } catch (IOException|XmlPullParserException e) {
221 throw new RuntimeException(e);
222 }
223 return profiles;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700224 }
225
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700226 private int getLauncherIconDensity(int requiredSize) {
227 // Densities typically defined by an app.
228 int[] densityBuckets = new int[] {
229 DisplayMetrics.DENSITY_LOW,
230 DisplayMetrics.DENSITY_MEDIUM,
231 DisplayMetrics.DENSITY_TV,
232 DisplayMetrics.DENSITY_HIGH,
233 DisplayMetrics.DENSITY_XHIGH,
234 DisplayMetrics.DENSITY_XXHIGH,
235 DisplayMetrics.DENSITY_XXXHIGH
236 };
237
238 int density = DisplayMetrics.DENSITY_XXXHIGH;
239 for (int i = densityBuckets.length - 1; i >= 0; i--) {
240 float expectedSize = ICON_SIZE_DEFINED_IN_APP_DP * densityBuckets[i]
241 / DisplayMetrics.DENSITY_DEFAULT;
242 if (expectedSize >= requiredSize) {
243 density = densityBuckets[i];
244 }
245 }
246
247 return density;
248 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700249
Adam Cohen2e6da152015-05-06 11:42:25 -0700250 /**
251 * Apply any Partner customization grid overrides.
252 *
253 * Currently we support: all apps row / column count.
254 */
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700255 private void applyPartnerDeviceProfileOverrides(Context context, DisplayMetrics dm) {
256 Partner p = Partner.get(context.getPackageManager());
Adam Cohen2e6da152015-05-06 11:42:25 -0700257 if (p != null) {
258 p.applyInvariantDeviceProfileOverrides(this, dm);
259 }
260 }
261
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700262 @Thunk float dist(float x0, float y0, float x1, float y1) {
263 return (float) Math.hypot(x1 - x0, y1 - y0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700264 }
265
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700266 /**
267 * Returns the closest device profiles ordered by closeness to the specified width and height
268 */
269 // Package private visibility for testing.
270 ArrayList<InvariantDeviceProfile> findClosestDeviceProfiles(
271 final float width, final float height, ArrayList<InvariantDeviceProfile> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700272
273 // Sort the profiles by their closeness to the dimensions
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700274 ArrayList<InvariantDeviceProfile> pointsByNearness = points;
275 Collections.sort(pointsByNearness, new Comparator<InvariantDeviceProfile>() {
276 public int compare(InvariantDeviceProfile a, InvariantDeviceProfile b) {
Winson46a06da2015-09-29 16:58:02 -0700277 return Float.compare(dist(width, height, a.minWidthDps, a.minHeightDps),
278 dist(width, height, b.minWidthDps, b.minHeightDps));
Adam Cohen2e6da152015-05-06 11:42:25 -0700279 }
280 });
281
282 return pointsByNearness;
283 }
284
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700285 // Package private visibility for testing.
286 InvariantDeviceProfile invDistWeightedInterpolate(float width, float height,
287 ArrayList<InvariantDeviceProfile> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700288 float weights = 0;
Adam Cohen2e6da152015-05-06 11:42:25 -0700289
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700290 InvariantDeviceProfile p = points.get(0);
291 if (dist(width, height, p.minWidthDps, p.minHeightDps) == 0) {
292 return p;
Adam Cohen2e6da152015-05-06 11:42:25 -0700293 }
294
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700295 InvariantDeviceProfile out = new InvariantDeviceProfile();
296 for (int i = 0; i < points.size() && i < KNEARESTNEIGHBOR; ++i) {
297 p = new InvariantDeviceProfile(points.get(i));
298 float w = weight(width, height, p.minWidthDps, p.minHeightDps, WEIGHT_POWER);
299 weights += w;
300 out.add(p.multiply(w));
Adam Cohen2e6da152015-05-06 11:42:25 -0700301 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700302 return out.multiply(1.0f/weights);
Adam Cohen2e6da152015-05-06 11:42:25 -0700303 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700304
305 private void add(InvariantDeviceProfile p) {
306 iconSize += p.iconSize;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700307 landscapeIconSize += p.landscapeIconSize;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700308 iconTextSize += p.iconTextSize;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700309 }
310
311 private InvariantDeviceProfile multiply(float w) {
312 iconSize *= w;
Jon Mirandab28c4fc2017-06-20 10:58:36 -0700313 landscapeIconSize *= w;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700314 iconTextSize *= w;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700315 return this;
316 }
317
Sunny Goyalbb011da2016-06-15 15:42:29 -0700318 public int getAllAppsButtonRank() {
Sunny Goyal3d706ad2017-03-06 16:56:39 -0800319 if (FeatureFlags.IS_DOGFOOD_BUILD && FeatureFlags.NO_ALL_APPS_ICON) {
Sunny Goyalbb011da2016-06-15 15:42:29 -0700320 throw new IllegalAccessError("Accessing all apps rank when all-apps is disabled");
321 }
322 return numHotseatIcons / 2;
323 }
324
325 public boolean isAllAppsButtonRank(int rank) {
326 return rank == getAllAppsButtonRank();
327 }
328
Sunny Goyal27835952017-01-13 12:15:53 -0800329 public DeviceProfile getDeviceProfile(Context context) {
330 return context.getResources().getConfiguration().orientation
331 == Configuration.ORIENTATION_LANDSCAPE ? landscapeProfile : portraitProfile;
332 }
333
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700334 private float weight(float x0, float y0, float x1, float y1, float pow) {
335 float d = dist(x0, y0, x1, y1);
336 if (Float.compare(d, 0f) == 0) {
337 return Float.POSITIVE_INFINITY;
338 }
339 return (float) (WEIGHT_EFFICIENT / Math.pow(d, pow));
340 }
Sunny Goyal6f866092016-03-17 17:04:15 -0700341
342 /**
343 * As a ratio of screen height, the total distance we want the parallax effect to span
344 * horizontally
345 */
346 private static float wallpaperTravelToScreenWidthRatio(int width, int height) {
347 float aspectRatio = width / (float) height;
348
349 // At an aspect ratio of 16/10, the wallpaper parallax effect should span 1.5 * screen width
350 // At an aspect ratio of 10/16, the wallpaper parallax effect should span 1.2 * screen width
351 // We will use these two data points to extrapolate how much the wallpaper parallax effect
352 // to span (ie travel) at any aspect ratio:
353
354 final float ASPECT_RATIO_LANDSCAPE = 16/10f;
355 final float ASPECT_RATIO_PORTRAIT = 10/16f;
356 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE = 1.5f;
357 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT = 1.2f;
358
359 // To find out the desired width at different aspect ratios, we use the following two
360 // formulas, where the coefficient on x is the aspect ratio (width/height):
361 // (16/10)x + y = 1.5
362 // (10/16)x + y = 1.2
363 // We solve for x and y and end up with a final formula:
364 final float x =
365 (WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE - WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT) /
366 (ASPECT_RATIO_LANDSCAPE - ASPECT_RATIO_PORTRAIT);
367 final float y = WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT - x * ASPECT_RATIO_PORTRAIT;
368 return x * aspectRatio + y;
369 }
370
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700371}