blob: 0742df9b4dd89a7a0a59f0f8cde1ed950d2d56b5 [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;
21import android.graphics.Point;
Adam Cohen2e6da152015-05-06 11:42:25 -070022import android.util.DisplayMetrics;
Adam Cohen2e6da152015-05-06 11:42:25 -070023import android.view.Display;
24import android.view.WindowManager;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070025
Adam Cohen2e6da152015-05-06 11:42:25 -070026import com.android.launcher3.util.Thunk;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070027
Adam Cohen2e6da152015-05-06 11:42:25 -070028import java.util.ArrayList;
29import java.util.Collections;
30import java.util.Comparator;
31
32public class InvariantDeviceProfile {
Adam Cohen2e6da152015-05-06 11:42:25 -070033
34 // 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 -070035 private static float DEFAULT_ICON_SIZE_DP = 60;
Adam Cohen2e6da152015-05-06 11:42:25 -070036
Sunny Goyal53d7ee42015-05-22 12:25:45 -070037 private static final float ICON_SIZE_DEFINED_IN_APP_DP = 48;
38
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070039 // Constants that affects the interpolation curve between statically defined device profile
40 // buckets.
41 private static float KNEARESTNEIGHBOR = 3;
42 private static float WEIGHT_POWER = 5;
Adam Cohen2e6da152015-05-06 11:42:25 -070043
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070044 // used to offset float not being able to express extremely small weights in extreme cases.
45 private static float WEIGHT_EFFICIENT = 100000f;
Adam Cohen2e6da152015-05-06 11:42:25 -070046
47 // Profile-defining invariant properties
48 String name;
49 float minWidthDps;
50 float minHeightDps;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070051
52 /**
53 * Number of icons per row and column in the workspace.
54 */
Adam Cohen2e6da152015-05-06 11:42:25 -070055 public int numRows;
56 public int numColumns;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070057
58 /**
Winson Chung2c6e5cc2015-06-01 14:38:24 -070059 * The minimum number of predicted apps in all apps.
60 */
61 int minAllAppsPredictionColumns;
62
63 /**
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070064 * Number of icons per row and column in the folder.
65 */
Adam Cohen2e6da152015-05-06 11:42:25 -070066 public int numFolderRows;
67 public int numFolderColumns;
Sunny Goyalfc218302015-09-17 14:59:10 -070068 public float iconSize;
69 public int iconBitmapSize;
70 public int fillResIconDpi;
71 public float iconTextSize;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070072
73 /**
74 * Number of icons inside the hotseat area.
75 */
Sunny Goyalf862a262015-12-14 14:27:38 -080076 public int numHotseatIcons;
Adam Cohen2e6da152015-05-06 11:42:25 -070077 float hotseatIconSize;
78 int defaultLayoutId;
79
80 // Derived invariant properties
Sunny Goyalf862a262015-12-14 14:27:38 -080081 public int hotseatAllAppsRank;
Adam Cohen2e6da152015-05-06 11:42:25 -070082
Sunny Goyalc6205602015-05-21 20:46:33 -070083 DeviceProfile landscapeProfile;
84 DeviceProfile portraitProfile;
85
Sunny Goyal6f866092016-03-17 17:04:15 -070086 public Point defaultWallpaperSize;
87
Sunny Goyalf076eae2016-01-11 12:25:10 -080088 public InvariantDeviceProfile() {
Adam Cohen2e6da152015-05-06 11:42:25 -070089 }
90
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070091 public InvariantDeviceProfile(InvariantDeviceProfile p) {
92 this(p.name, p.minWidthDps, p.minHeightDps, p.numRows, p.numColumns,
Winson Chung2c6e5cc2015-06-01 14:38:24 -070093 p.numFolderRows, p.numFolderColumns, p.minAllAppsPredictionColumns,
94 p.iconSize, p.iconTextSize, p.numHotseatIcons, p.hotseatIconSize,
95 p.defaultLayoutId);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070096 }
97
Winson Chung2c6e5cc2015-06-01 14:38:24 -070098 InvariantDeviceProfile(String n, float w, float h, int r, int c, int fr, int fc, int maapc,
Tony Wickhamd6b40372015-09-23 18:37:57 -070099 float is, float its, int hs, float his, int dlId) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700100 // Ensure that we have an odd number of hotseat items (since we need to place all apps)
101 if (hs % 2 == 0) {
102 throw new RuntimeException("All Device Profiles must have an odd number of hotseat spaces");
103 }
104
105 name = n;
106 minWidthDps = w;
107 minHeightDps = h;
108 numRows = r;
109 numColumns = c;
110 numFolderRows = fr;
111 numFolderColumns = fc;
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700112 minAllAppsPredictionColumns = maapc;
Adam Cohen2e6da152015-05-06 11:42:25 -0700113 iconSize = is;
114 iconTextSize = its;
115 numHotseatIcons = hs;
116 hotseatIconSize = his;
117 defaultLayoutId = dlId;
118 }
119
Sunny Goyalbbf01842015-10-08 07:41:15 -0700120 @TargetApi(23)
Adam Cohen2e6da152015-05-06 11:42:25 -0700121 InvariantDeviceProfile(Context context) {
122 WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
123 Display display = wm.getDefaultDisplay();
124 DisplayMetrics dm = new DisplayMetrics();
125 display.getMetrics(dm);
126
127 Point smallestSize = new Point();
128 Point largestSize = new Point();
129 display.getCurrentSizeRange(smallestSize, largestSize);
130
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700131 // This guarantees that width < height
Adam Cohen2e6da152015-05-06 11:42:25 -0700132 minWidthDps = Utilities.dpiFromPx(Math.min(smallestSize.x, smallestSize.y), dm);
133 minHeightDps = Utilities.dpiFromPx(Math.min(largestSize.x, largestSize.y), dm);
134
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700135 ArrayList<InvariantDeviceProfile> closestProfiles =
136 findClosestDeviceProfiles(minWidthDps, minHeightDps, getPredefinedDeviceProfiles());
137 InvariantDeviceProfile interpolatedDeviceProfileOut =
138 invDistWeightedInterpolate(minWidthDps, minHeightDps, closestProfiles);
Adam Cohen2e6da152015-05-06 11:42:25 -0700139
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700140 InvariantDeviceProfile closestProfile = closestProfiles.get(0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700141 numRows = closestProfile.numRows;
142 numColumns = closestProfile.numColumns;
143 numHotseatIcons = closestProfile.numHotseatIcons;
144 hotseatAllAppsRank = (int) (numHotseatIcons / 2);
145 defaultLayoutId = closestProfile.defaultLayoutId;
146 numFolderRows = closestProfile.numFolderRows;
147 numFolderColumns = closestProfile.numFolderColumns;
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700148 minAllAppsPredictionColumns = closestProfile.minAllAppsPredictionColumns;
Adam Cohen2e6da152015-05-06 11:42:25 -0700149
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700150 iconSize = interpolatedDeviceProfileOut.iconSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700151 iconBitmapSize = Utilities.pxFromDp(iconSize, dm);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700152 iconTextSize = interpolatedDeviceProfileOut.iconTextSize;
153 hotseatIconSize = interpolatedDeviceProfileOut.hotseatIconSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700154 fillResIconDpi = getLauncherIconDensity(iconBitmapSize);
Adam Cohen2e6da152015-05-06 11:42:25 -0700155
156 // If the partner customization apk contains any grid overrides, apply them
157 // Supported overrides: numRows, numColumns, iconSize
158 applyPartnerDeviceProfileOverrides(context, dm);
Sunny Goyalc6205602015-05-21 20:46:33 -0700159
160 Point realSize = new Point();
161 display.getRealSize(realSize);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700162 // The real size never changes. smallSide and largeSide will remain the
Sunny Goyalc6205602015-05-21 20:46:33 -0700163 // same in any orientation.
164 int smallSide = Math.min(realSize.x, realSize.y);
165 int largeSide = Math.max(realSize.x, realSize.y);
166
167 landscapeProfile = new DeviceProfile(context, this, smallestSize, largestSize,
168 largeSide, smallSide, true /* isLandscape */);
169 portraitProfile = new DeviceProfile(context, this, smallestSize, largestSize,
170 smallSide, largeSide, false /* isLandscape */);
Sunny Goyal6f866092016-03-17 17:04:15 -0700171
172 // We need to ensure that there is enough extra space in the wallpaper
173 // for the intended parallax effects
174 if (context.getResources().getConfiguration().smallestScreenWidthDp >= 720) {
175 defaultWallpaperSize = new Point(
176 (int) (largeSide * wallpaperTravelToScreenWidthRatio(largeSide, smallSide)),
177 largeSide);
178 } else {
179 defaultWallpaperSize = new Point(Math.max(smallSide * 2, largeSide), largeSide);
180 }
Adam Cohen2e6da152015-05-06 11:42:25 -0700181 }
182
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700183 ArrayList<InvariantDeviceProfile> getPredefinedDeviceProfiles() {
184 ArrayList<InvariantDeviceProfile> predefinedDeviceProfiles = new ArrayList<>();
185 // width, height, #rows, #columns, #folder rows, #folder columns,
186 // iconSize, iconTextSize, #hotseat, #hotseatIconSize, defaultLayoutId.
187 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Super Short Stubby",
Sunny Goyal96a09632015-12-16 11:32:54 -0800188 255, 300, 2, 3, 2, 3, 3, 48, 13, 3, 48, R.xml.default_workspace_3x3));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700189 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Shorter Stubby",
Sunny Goyal96a09632015-12-16 11:32:54 -0800190 255, 400, 3, 3, 3, 3, 3, 48, 13, 3, 48, R.xml.default_workspace_3x3));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700191 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Short Stubby",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700192 275, 420, 3, 4, 3, 4, 4, 48, 13, 5, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700193 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Stubby",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700194 255, 450, 3, 4, 3, 4, 4, 48, 13, 5, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700195 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus S",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700196 296, 491.33f, 4, 4, 4, 4, 4, 48, 13, 5, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700197 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 4",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700198 359, 567, 4, 4, 4, 4, 4, DEFAULT_ICON_SIZE_DP, 13, 5, 56, R.xml.default_workspace_4x4));
Tony Wickham58ecbe42015-09-29 15:15:53 -0700199 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 5",
200 335, 567, 4, 4, 4, 4, 4, DEFAULT_ICON_SIZE_DP, 13, 5, 56, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700201 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Large Phone",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700202 406, 694, 5, 5, 4, 4, 4, 64, 14.4f, 5, 56, R.xml.default_workspace_5x5));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700203 // The tablet profile is odd in that the landscape orientation
204 // also includes the nav bar on the side
205 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 7",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700206 575, 904, 5, 6, 4, 5, 4, 72, 14.4f, 7, 60, R.xml.default_workspace_5x6));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700207 // Larger tablet profiles always have system bars on the top & bottom
208 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 10",
Tony Wickhamd6b40372015-09-23 18:37:57 -0700209 727, 1207, 5, 6, 4, 5, 4, 76, 14.4f, 7, 76, R.xml.default_workspace_5x6));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700210 predefinedDeviceProfiles.add(new InvariantDeviceProfile("20-inch Tablet",
Sunny Goyal96a09632015-12-16 11:32:54 -0800211 1527, 2527, 7, 7, 6, 6, 4, 100, 20, 7, 72, R.xml.default_workspace_5x6));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700212 return predefinedDeviceProfiles;
213 }
214
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700215 private int getLauncherIconDensity(int requiredSize) {
216 // Densities typically defined by an app.
217 int[] densityBuckets = new int[] {
218 DisplayMetrics.DENSITY_LOW,
219 DisplayMetrics.DENSITY_MEDIUM,
220 DisplayMetrics.DENSITY_TV,
221 DisplayMetrics.DENSITY_HIGH,
222 DisplayMetrics.DENSITY_XHIGH,
223 DisplayMetrics.DENSITY_XXHIGH,
224 DisplayMetrics.DENSITY_XXXHIGH
225 };
226
227 int density = DisplayMetrics.DENSITY_XXXHIGH;
228 for (int i = densityBuckets.length - 1; i >= 0; i--) {
229 float expectedSize = ICON_SIZE_DEFINED_IN_APP_DP * densityBuckets[i]
230 / DisplayMetrics.DENSITY_DEFAULT;
231 if (expectedSize >= requiredSize) {
232 density = densityBuckets[i];
233 }
234 }
235
236 return density;
237 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700238
Adam Cohen2e6da152015-05-06 11:42:25 -0700239 /**
240 * Apply any Partner customization grid overrides.
241 *
242 * Currently we support: all apps row / column count.
243 */
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700244 private void applyPartnerDeviceProfileOverrides(Context context, DisplayMetrics dm) {
245 Partner p = Partner.get(context.getPackageManager());
Adam Cohen2e6da152015-05-06 11:42:25 -0700246 if (p != null) {
247 p.applyInvariantDeviceProfileOverrides(this, dm);
248 }
249 }
250
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700251 @Thunk float dist(float x0, float y0, float x1, float y1) {
252 return (float) Math.hypot(x1 - x0, y1 - y0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700253 }
254
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700255 /**
256 * Returns the closest device profiles ordered by closeness to the specified width and height
257 */
258 // Package private visibility for testing.
259 ArrayList<InvariantDeviceProfile> findClosestDeviceProfiles(
260 final float width, final float height, ArrayList<InvariantDeviceProfile> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700261
262 // Sort the profiles by their closeness to the dimensions
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700263 ArrayList<InvariantDeviceProfile> pointsByNearness = points;
264 Collections.sort(pointsByNearness, new Comparator<InvariantDeviceProfile>() {
265 public int compare(InvariantDeviceProfile a, InvariantDeviceProfile b) {
Winson46a06da2015-09-29 16:58:02 -0700266 return Float.compare(dist(width, height, a.minWidthDps, a.minHeightDps),
267 dist(width, height, b.minWidthDps, b.minHeightDps));
Adam Cohen2e6da152015-05-06 11:42:25 -0700268 }
269 });
270
271 return pointsByNearness;
272 }
273
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700274 // Package private visibility for testing.
275 InvariantDeviceProfile invDistWeightedInterpolate(float width, float height,
276 ArrayList<InvariantDeviceProfile> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700277 float weights = 0;
Adam Cohen2e6da152015-05-06 11:42:25 -0700278
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700279 InvariantDeviceProfile p = points.get(0);
280 if (dist(width, height, p.minWidthDps, p.minHeightDps) == 0) {
281 return p;
Adam Cohen2e6da152015-05-06 11:42:25 -0700282 }
283
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700284 InvariantDeviceProfile out = new InvariantDeviceProfile();
285 for (int i = 0; i < points.size() && i < KNEARESTNEIGHBOR; ++i) {
286 p = new InvariantDeviceProfile(points.get(i));
287 float w = weight(width, height, p.minWidthDps, p.minHeightDps, WEIGHT_POWER);
288 weights += w;
289 out.add(p.multiply(w));
Adam Cohen2e6da152015-05-06 11:42:25 -0700290 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700291 return out.multiply(1.0f/weights);
Adam Cohen2e6da152015-05-06 11:42:25 -0700292 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700293
294 private void add(InvariantDeviceProfile p) {
295 iconSize += p.iconSize;
296 iconTextSize += p.iconTextSize;
297 hotseatIconSize += p.hotseatIconSize;
298 }
299
300 private InvariantDeviceProfile multiply(float w) {
301 iconSize *= w;
302 iconTextSize *= w;
303 hotseatIconSize *= w;
304 return this;
305 }
306
307 private float weight(float x0, float y0, float x1, float y1, float pow) {
308 float d = dist(x0, y0, x1, y1);
309 if (Float.compare(d, 0f) == 0) {
310 return Float.POSITIVE_INFINITY;
311 }
312 return (float) (WEIGHT_EFFICIENT / Math.pow(d, pow));
313 }
Sunny Goyal6f866092016-03-17 17:04:15 -0700314
315 /**
316 * As a ratio of screen height, the total distance we want the parallax effect to span
317 * horizontally
318 */
319 private static float wallpaperTravelToScreenWidthRatio(int width, int height) {
320 float aspectRatio = width / (float) height;
321
322 // At an aspect ratio of 16/10, the wallpaper parallax effect should span 1.5 * screen width
323 // At an aspect ratio of 10/16, the wallpaper parallax effect should span 1.2 * screen width
324 // We will use these two data points to extrapolate how much the wallpaper parallax effect
325 // to span (ie travel) at any aspect ratio:
326
327 final float ASPECT_RATIO_LANDSCAPE = 16/10f;
328 final float ASPECT_RATIO_PORTRAIT = 10/16f;
329 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE = 1.5f;
330 final float WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT = 1.2f;
331
332 // To find out the desired width at different aspect ratios, we use the following two
333 // formulas, where the coefficient on x is the aspect ratio (width/height):
334 // (16/10)x + y = 1.5
335 // (10/16)x + y = 1.2
336 // We solve for x and y and end up with a final formula:
337 final float x =
338 (WALLPAPER_WIDTH_TO_SCREEN_RATIO_LANDSCAPE - WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT) /
339 (ASPECT_RATIO_LANDSCAPE - ASPECT_RATIO_PORTRAIT);
340 final float y = WALLPAPER_WIDTH_TO_SCREEN_RATIO_PORTRAIT - x * ASPECT_RATIO_PORTRAIT;
341 return x * aspectRatio + y;
342 }
343
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700344}