blob: d91104acba2141e67cb99c22abedf6c398997488 [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;
Sunny Goyalc6205602015-05-21 20:46:33 -070022import android.os.Build;
Adam Cohen2e6da152015-05-06 11:42:25 -070023import android.util.DisplayMetrics;
Adam Cohen2e6da152015-05-06 11:42:25 -070024import android.view.Display;
25import android.view.WindowManager;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070026
Adam Cohen2e6da152015-05-06 11:42:25 -070027import com.android.launcher3.util.Thunk;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070028
Adam Cohen2e6da152015-05-06 11:42:25 -070029import java.util.ArrayList;
30import java.util.Collections;
31import java.util.Comparator;
32
33public class InvariantDeviceProfile {
Adam Cohen2e6da152015-05-06 11:42:25 -070034
35 // 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 -070036 private static float DEFAULT_ICON_SIZE_DP = 60;
Adam Cohen2e6da152015-05-06 11:42:25 -070037
Sunny Goyal53d7ee42015-05-22 12:25:45 -070038 private static final float ICON_SIZE_DEFINED_IN_APP_DP = 48;
39
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070040 // Constants that affects the interpolation curve between statically defined device profile
41 // buckets.
42 private static float KNEARESTNEIGHBOR = 3;
43 private static float WEIGHT_POWER = 5;
Adam Cohen2e6da152015-05-06 11:42:25 -070044
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070045 // used to offset float not being able to express extremely small weights in extreme cases.
46 private static float WEIGHT_EFFICIENT = 100000f;
Adam Cohen2e6da152015-05-06 11:42:25 -070047
48 // Profile-defining invariant properties
49 String name;
50 float minWidthDps;
51 float minHeightDps;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070052
53 /**
54 * Number of icons per row and column in the workspace.
55 */
Adam Cohen2e6da152015-05-06 11:42:25 -070056 public int numRows;
57 public int numColumns;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070058
59 /**
Winson Chung2c6e5cc2015-06-01 14:38:24 -070060 * The minimum number of predicted apps in all apps.
61 */
62 int minAllAppsPredictionColumns;
63
64 /**
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070065 * Number of icons per row and column in the folder.
66 */
Adam Cohen2e6da152015-05-06 11:42:25 -070067 public int numFolderRows;
68 public int numFolderColumns;
69 float iconSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -070070 int iconBitmapSize;
71 int fillResIconDpi;
Adam Cohen2e6da152015-05-06 11:42:25 -070072 float iconTextSize;
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070073
74 /**
75 * Number of icons inside the hotseat area.
76 */
Tony Wickhamd6b40372015-09-23 18:37:57 -070077 int numHotseatIcons;
Adam Cohen2e6da152015-05-06 11:42:25 -070078 float hotseatIconSize;
79 int defaultLayoutId;
80
81 // Derived invariant properties
82 int hotseatAllAppsRank;
83
Sunny Goyalc6205602015-05-21 20:46:33 -070084 DeviceProfile landscapeProfile;
85 DeviceProfile portraitProfile;
86
Adam Cohen2e6da152015-05-06 11:42:25 -070087 InvariantDeviceProfile() {
88 }
89
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070090 public InvariantDeviceProfile(InvariantDeviceProfile p) {
91 this(p.name, p.minWidthDps, p.minHeightDps, p.numRows, p.numColumns,
Winson Chung2c6e5cc2015-06-01 14:38:24 -070092 p.numFolderRows, p.numFolderColumns, p.minAllAppsPredictionColumns,
93 p.iconSize, p.iconTextSize, p.numHotseatIcons, p.hotseatIconSize,
94 p.defaultLayoutId);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -070095 }
96
Winson Chung2c6e5cc2015-06-01 14:38:24 -070097 InvariantDeviceProfile(String n, float w, float h, int r, int c, int fr, int fc, int maapc,
Tony Wickhamd6b40372015-09-23 18:37:57 -070098 float is, float its, int hs, float his, int dlId) {
Adam Cohen2e6da152015-05-06 11:42:25 -070099 // Ensure that we have an odd number of hotseat items (since we need to place all apps)
100 if (hs % 2 == 0) {
101 throw new RuntimeException("All Device Profiles must have an odd number of hotseat spaces");
102 }
103
104 name = n;
105 minWidthDps = w;
106 minHeightDps = h;
107 numRows = r;
108 numColumns = c;
109 numFolderRows = fr;
110 numFolderColumns = fc;
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700111 minAllAppsPredictionColumns = maapc;
Adam Cohen2e6da152015-05-06 11:42:25 -0700112 iconSize = is;
113 iconTextSize = its;
114 numHotseatIcons = hs;
115 hotseatIconSize = his;
116 defaultLayoutId = dlId;
117 }
118
Sunny Goyalc6205602015-05-21 20:46:33 -0700119 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
Adam Cohen2e6da152015-05-06 11:42:25 -0700120 InvariantDeviceProfile(Context context) {
121 WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
122 Display display = wm.getDefaultDisplay();
123 DisplayMetrics dm = new DisplayMetrics();
124 display.getMetrics(dm);
125
126 Point smallestSize = new Point();
127 Point largestSize = new Point();
128 display.getCurrentSizeRange(smallestSize, largestSize);
129
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700130 // This guarantees that width < height
Adam Cohen2e6da152015-05-06 11:42:25 -0700131 minWidthDps = Utilities.dpiFromPx(Math.min(smallestSize.x, smallestSize.y), dm);
132 minHeightDps = Utilities.dpiFromPx(Math.min(largestSize.x, largestSize.y), dm);
133
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700134 ArrayList<InvariantDeviceProfile> closestProfiles =
135 findClosestDeviceProfiles(minWidthDps, minHeightDps, getPredefinedDeviceProfiles());
136 InvariantDeviceProfile interpolatedDeviceProfileOut =
137 invDistWeightedInterpolate(minWidthDps, minHeightDps, closestProfiles);
Adam Cohen2e6da152015-05-06 11:42:25 -0700138
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700139 InvariantDeviceProfile closestProfile = closestProfiles.get(0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700140 numRows = closestProfile.numRows;
141 numColumns = closestProfile.numColumns;
142 numHotseatIcons = closestProfile.numHotseatIcons;
143 hotseatAllAppsRank = (int) (numHotseatIcons / 2);
144 defaultLayoutId = closestProfile.defaultLayoutId;
145 numFolderRows = closestProfile.numFolderRows;
146 numFolderColumns = closestProfile.numFolderColumns;
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700147 minAllAppsPredictionColumns = closestProfile.minAllAppsPredictionColumns;
Adam Cohen2e6da152015-05-06 11:42:25 -0700148
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700149 iconSize = interpolatedDeviceProfileOut.iconSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700150 iconBitmapSize = Utilities.pxFromDp(iconSize, dm);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700151 iconTextSize = interpolatedDeviceProfileOut.iconTextSize;
152 hotseatIconSize = interpolatedDeviceProfileOut.hotseatIconSize;
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700153 fillResIconDpi = getLauncherIconDensity(iconBitmapSize);
Adam Cohen2e6da152015-05-06 11:42:25 -0700154
155 // If the partner customization apk contains any grid overrides, apply them
156 // Supported overrides: numRows, numColumns, iconSize
157 applyPartnerDeviceProfileOverrides(context, dm);
Sunny Goyalc6205602015-05-21 20:46:33 -0700158
159 Point realSize = new Point();
160 display.getRealSize(realSize);
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700161 // The real size never changes. smallSide and largeSide will remain the
Sunny Goyalc6205602015-05-21 20:46:33 -0700162 // same in any orientation.
163 int smallSide = Math.min(realSize.x, realSize.y);
164 int largeSide = Math.max(realSize.x, realSize.y);
165
166 landscapeProfile = new DeviceProfile(context, this, smallestSize, largestSize,
167 largeSide, smallSide, true /* isLandscape */);
168 portraitProfile = new DeviceProfile(context, this, smallestSize, largestSize,
169 smallSide, largeSide, false /* isLandscape */);
Adam Cohen2e6da152015-05-06 11:42:25 -0700170 }
171
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700172 ArrayList<InvariantDeviceProfile> getPredefinedDeviceProfiles() {
173 ArrayList<InvariantDeviceProfile> predefinedDeviceProfiles = new ArrayList<>();
174 // width, height, #rows, #columns, #folder rows, #folder columns,
175 // iconSize, iconTextSize, #hotseat, #hotseatIconSize, defaultLayoutId.
176 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Super Short Stubby",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700177 255, 300, 2, 3, 2, 3, 3, 48, 13, 3, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700178 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Shorter Stubby",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700179 255, 400, 3, 3, 3, 3, 3, 48, 13, 3, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700180 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Short Stubby",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700181 275, 420, 3, 4, 3, 4, 4, 48, 13, 5, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700182 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Stubby",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700183 255, 450, 3, 4, 3, 4, 4, 48, 13, 5, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700184 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus S",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700185 296, 491.33f, 4, 4, 4, 4, 4, 48, 13, 5, 48, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700186 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 4",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700187 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 -0700188 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 5",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700189 359, 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 -0700190 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Large Phone",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700191 406, 694, 5, 5, 4, 4, 4, 64, 14.4f, 5, 56, R.xml.default_workspace_5x5));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700192 // The tablet profile is odd in that the landscape orientation
193 // also includes the nav bar on the side
194 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 7",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700195 575, 904, 5, 6, 4, 5, 4, 72, 14.4f, 7, 60, R.xml.default_workspace_5x6));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700196 // Larger tablet profiles always have system bars on the top & bottom
197 predefinedDeviceProfiles.add(new InvariantDeviceProfile("Nexus 10",
Tony Wickhamd6b40372015-09-23 18:37:57 -0700198 727, 1207, 5, 6, 4, 5, 4, 76, 14.4f, 7, 76, R.xml.default_workspace_5x6));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700199 predefinedDeviceProfiles.add(new InvariantDeviceProfile("20-inch Tablet",
Winson Chung2c6e5cc2015-06-01 14:38:24 -0700200 1527, 2527, 7, 7, 6, 6, 4, 100, 20, 7, 72, R.xml.default_workspace_4x4));
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700201 return predefinedDeviceProfiles;
202 }
203
Sunny Goyal53d7ee42015-05-22 12:25:45 -0700204 private int getLauncherIconDensity(int requiredSize) {
205 // Densities typically defined by an app.
206 int[] densityBuckets = new int[] {
207 DisplayMetrics.DENSITY_LOW,
208 DisplayMetrics.DENSITY_MEDIUM,
209 DisplayMetrics.DENSITY_TV,
210 DisplayMetrics.DENSITY_HIGH,
211 DisplayMetrics.DENSITY_XHIGH,
212 DisplayMetrics.DENSITY_XXHIGH,
213 DisplayMetrics.DENSITY_XXXHIGH
214 };
215
216 int density = DisplayMetrics.DENSITY_XXXHIGH;
217 for (int i = densityBuckets.length - 1; i >= 0; i--) {
218 float expectedSize = ICON_SIZE_DEFINED_IN_APP_DP * densityBuckets[i]
219 / DisplayMetrics.DENSITY_DEFAULT;
220 if (expectedSize >= requiredSize) {
221 density = densityBuckets[i];
222 }
223 }
224
225 return density;
226 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700227
Adam Cohen2e6da152015-05-06 11:42:25 -0700228 /**
229 * Apply any Partner customization grid overrides.
230 *
231 * Currently we support: all apps row / column count.
232 */
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700233 private void applyPartnerDeviceProfileOverrides(Context context, DisplayMetrics dm) {
234 Partner p = Partner.get(context.getPackageManager());
Adam Cohen2e6da152015-05-06 11:42:25 -0700235 if (p != null) {
236 p.applyInvariantDeviceProfileOverrides(this, dm);
237 }
238 }
239
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700240 @Thunk float dist(float x0, float y0, float x1, float y1) {
241 return (float) Math.hypot(x1 - x0, y1 - y0);
Adam Cohen2e6da152015-05-06 11:42:25 -0700242 }
243
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700244 /**
245 * Returns the closest device profiles ordered by closeness to the specified width and height
246 */
247 // Package private visibility for testing.
248 ArrayList<InvariantDeviceProfile> findClosestDeviceProfiles(
249 final float width, final float height, ArrayList<InvariantDeviceProfile> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700250
251 // Sort the profiles by their closeness to the dimensions
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700252 ArrayList<InvariantDeviceProfile> pointsByNearness = points;
253 Collections.sort(pointsByNearness, new Comparator<InvariantDeviceProfile>() {
254 public int compare(InvariantDeviceProfile a, InvariantDeviceProfile b) {
255 return (int) (dist(width, height, a.minWidthDps, a.minHeightDps)
256 - dist(width, height, b.minWidthDps, b.minHeightDps));
Adam Cohen2e6da152015-05-06 11:42:25 -0700257 }
258 });
259
260 return pointsByNearness;
261 }
262
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700263 // Package private visibility for testing.
264 InvariantDeviceProfile invDistWeightedInterpolate(float width, float height,
265 ArrayList<InvariantDeviceProfile> points) {
Adam Cohen2e6da152015-05-06 11:42:25 -0700266 float weights = 0;
Adam Cohen2e6da152015-05-06 11:42:25 -0700267
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700268 InvariantDeviceProfile p = points.get(0);
269 if (dist(width, height, p.minWidthDps, p.minHeightDps) == 0) {
270 return p;
Adam Cohen2e6da152015-05-06 11:42:25 -0700271 }
272
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700273 InvariantDeviceProfile out = new InvariantDeviceProfile();
274 for (int i = 0; i < points.size() && i < KNEARESTNEIGHBOR; ++i) {
275 p = new InvariantDeviceProfile(points.get(i));
276 float w = weight(width, height, p.minWidthDps, p.minHeightDps, WEIGHT_POWER);
277 weights += w;
278 out.add(p.multiply(w));
Adam Cohen2e6da152015-05-06 11:42:25 -0700279 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700280 return out.multiply(1.0f/weights);
Adam Cohen2e6da152015-05-06 11:42:25 -0700281 }
Hyunyoung Song35c3c7f2015-05-28 15:33:40 -0700282
283 private void add(InvariantDeviceProfile p) {
284 iconSize += p.iconSize;
285 iconTextSize += p.iconTextSize;
286 hotseatIconSize += p.hotseatIconSize;
287 }
288
289 private InvariantDeviceProfile multiply(float w) {
290 iconSize *= w;
291 iconTextSize *= w;
292 hotseatIconSize *= w;
293 return this;
294 }
295
296 private float weight(float x0, float y0, float x1, float y1, float pow) {
297 float d = dist(x0, y0, x1, y1);
298 if (Float.compare(d, 0f) == 0) {
299 return Float.POSITIVE_INFINITY;
300 }
301 return (float) (WEIGHT_EFFICIENT / Math.pow(d, pow));
302 }
303}