blob: 2d321f9a1a9a6ef43d0efa82820d29d14f48113c [file] [log] [blame]
Wei Liu30275c12015-08-24 17:35:49 -07001package com.android.settingslib;
2
Andrew Sapperstein5c373442016-06-12 13:17:16 -07003import android.annotation.ColorInt;
Wei Liu30275c12015-08-24 17:35:49 -07004import android.content.Context;
Jason Monkc06fbb12016-01-08 14:12:18 -05005import android.content.Intent;
Julia Reynolds21c30542016-01-15 15:00:02 -05006import android.content.pm.PackageInfo;
7import android.content.pm.PackageManager;
8import android.content.pm.PackageManager.NameNotFoundException;
Julia Reynolds21c30542016-01-15 15:00:02 -05009import android.content.pm.Signature;
Fan Zhang73b161d2017-02-08 11:46:54 -080010import android.content.pm.UserInfo;
jackqdyuleib68fd7a2017-01-04 15:43:26 -080011import android.content.res.ColorStateList;
Jason Monkc06fbb12016-01-08 14:12:18 -050012import android.content.res.Resources;
Andrew Sapperstein5c373442016-06-12 13:17:16 -070013import android.content.res.TypedArray;
Wei Liu30275c12015-08-24 17:35:49 -070014import android.graphics.Bitmap;
Jason Monk32508852017-01-18 09:17:13 -050015import android.graphics.Color;
Wei Liu30275c12015-08-24 17:35:49 -070016import android.graphics.drawable.Drawable;
Maggiefab2e2c2017-11-21 11:57:30 -080017import android.location.LocationManager;
timhypeng1b25c9a2018-04-23 18:08:47 +080018import android.media.AudioManager;
Wei Liu30275c12015-08-24 17:35:49 -070019import android.net.ConnectivityManager;
Jason Monkc06fbb12016-01-08 14:12:18 -050020import android.os.BatteryManager;
Daniel Nishi84522e02018-01-23 18:27:22 -080021import android.os.SystemProperties;
Maggiefab2e2c2017-11-21 11:57:30 -080022import android.os.UserHandle;
Wei Liu30275c12015-08-24 17:35:49 -070023import android.os.UserManager;
Philip P. Moltmann545a58a2016-06-28 14:14:06 -070024import android.print.PrintManager;
Daniel Nishi53982802017-05-23 15:54:34 -070025import android.provider.Settings;
Daniel Nishi84522e02018-01-23 18:27:22 -080026
27import com.android.internal.annotations.VisibleForTesting;
Wei Liu30275c12015-08-24 17:35:49 -070028import com.android.internal.util.UserIcons;
Evan Roskyaa7f51f2016-03-16 13:15:53 -070029import com.android.settingslib.drawable.UserIconDrawable;
Maggieaa080f92018-01-04 15:35:11 -080030import com.android.settingslib.wrapper.LocationManagerWrapper;
Jason Monkc06fbb12016-01-08 14:12:18 -050031import java.text.NumberFormat;
32
33public class Utils {
Maggiefab2e2c2017-11-21 11:57:30 -080034
35 private static final String CURRENT_MODE_KEY = "CURRENT_MODE";
36 private static final String NEW_MODE_KEY = "NEW_MODE";
Daniel Nishi84522e02018-01-23 18:27:22 -080037 @VisibleForTesting
Daniel Nishi7a118342019-01-10 15:40:23 -080038 static final String STORAGE_MANAGER_ENABLED_PROPERTY =
39 "ro.storage_manager.enabled";
Maggiefab2e2c2017-11-21 11:57:30 -080040
Svetoslav Ganova9c25002016-04-13 19:25:56 -070041 private static Signature[] sSystemSignature;
42 private static String sPermissionControllerPackageName;
43 private static String sServicesSystemSharedLibPackageName;
44 private static String sSharedSystemSharedLibPackageName;
Wei Liu30275c12015-08-24 17:35:49 -070045
Eric Schwarzenbach44268e32017-08-04 16:38:07 -070046 static final int[] WIFI_PIE = {
Daniel Nishi84522e02018-01-23 18:27:22 -080047 com.android.internal.R.drawable.ic_wifi_signal_0,
48 com.android.internal.R.drawable.ic_wifi_signal_1,
49 com.android.internal.R.drawable.ic_wifi_signal_2,
50 com.android.internal.R.drawable.ic_wifi_signal_3,
51 com.android.internal.R.drawable.ic_wifi_signal_4
Sundeep Ghumanf84e0572017-01-10 13:43:03 -080052 };
53
Lifu Tang0cba58f2018-01-23 21:14:15 -080054 public static void updateLocationEnabled(Context context, boolean enabled, int userId,
55 int source) {
56 Settings.Secure.putIntForUser(
57 context.getContentResolver(), Settings.Secure.LOCATION_CHANGER, source,
58 userId);
Maggieaa080f92018-01-04 15:35:11 -080059 Intent intent = new Intent(LocationManager.MODE_CHANGING_ACTION);
60
61 final int oldMode = Settings.Secure.getIntForUser(context.getContentResolver(),
62 Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF, userId);
63 final int newMode = enabled
64 ? Settings.Secure.LOCATION_MODE_HIGH_ACCURACY
65 : Settings.Secure.LOCATION_MODE_OFF;
66 intent.putExtra(CURRENT_MODE_KEY, oldMode);
67 intent.putExtra(NEW_MODE_KEY, newMode);
68 context.sendBroadcastAsUser(
69 intent, UserHandle.of(userId), android.Manifest.permission.WRITE_SECURE_SETTINGS);
70 LocationManager locationManager =
71 (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
72 LocationManagerWrapper wrapper = new LocationManagerWrapper(locationManager);
73 wrapper.setLocationEnabledForUser(enabled, UserHandle.of(userId));
74 }
75
Lifu Tang0cba58f2018-01-23 21:14:15 -080076 public static boolean updateLocationMode(Context context, int oldMode, int newMode, int userId,
77 int source) {
78 Settings.Secure.putIntForUser(
79 context.getContentResolver(), Settings.Secure.LOCATION_CHANGER, source,
80 userId);
Maggiefab2e2c2017-11-21 11:57:30 -080081 Intent intent = new Intent(LocationManager.MODE_CHANGING_ACTION);
82 intent.putExtra(CURRENT_MODE_KEY, oldMode);
83 intent.putExtra(NEW_MODE_KEY, newMode);
84 context.sendBroadcastAsUser(
85 intent, UserHandle.of(userId), android.Manifest.permission.WRITE_SECURE_SETTINGS);
86 return Settings.Secure.putIntForUser(
87 context.getContentResolver(), Settings.Secure.LOCATION_MODE, newMode, userId);
88 }
89
Wei Liu30275c12015-08-24 17:35:49 -070090 /**
91 * Return string resource that best describes combination of tethering
92 * options available on this device.
93 */
94 public static int getTetheringLabel(ConnectivityManager cm) {
95 String[] usbRegexs = cm.getTetherableUsbRegexs();
96 String[] wifiRegexs = cm.getTetherableWifiRegexs();
97 String[] bluetoothRegexs = cm.getTetherableBluetoothRegexs();
98
99 boolean usbAvailable = usbRegexs.length != 0;
100 boolean wifiAvailable = wifiRegexs.length != 0;
101 boolean bluetoothAvailable = bluetoothRegexs.length != 0;
102
103 if (wifiAvailable && usbAvailable && bluetoothAvailable) {
104 return R.string.tether_settings_title_all;
105 } else if (wifiAvailable && usbAvailable) {
106 return R.string.tether_settings_title_all;
107 } else if (wifiAvailable && bluetoothAvailable) {
108 return R.string.tether_settings_title_all;
109 } else if (wifiAvailable) {
110 return R.string.tether_settings_title_wifi;
111 } else if (usbAvailable && bluetoothAvailable) {
112 return R.string.tether_settings_title_usb_bluetooth;
113 } else if (usbAvailable) {
114 return R.string.tether_settings_title_usb;
115 } else {
116 return R.string.tether_settings_title_bluetooth;
117 }
118 }
119
120 /**
121 * Returns a label for the user, in the form of "User: user name" or "Work profile".
122 */
123 public static String getUserLabel(Context context, UserInfo info) {
124 String name = info != null ? info.name : null;
125 if (info.isManagedProfile()) {
126 // We use predefined values for managed profiles
127 return context.getString(R.string.managed_user_title);
128 } else if (info.isGuest()) {
129 name = context.getString(R.string.user_guest);
130 }
131 if (name == null && info != null) {
132 name = Integer.toString(info.id);
133 } else if (info == null) {
134 name = context.getString(R.string.unknown);
135 }
136 return context.getResources().getString(R.string.running_process_item_user_label, name);
137 }
138
139 /**
140 * Returns a circular icon for a user.
141 */
Daniel Nishif26dbd82017-08-15 15:25:39 -0700142 public static Drawable getUserIcon(Context context, UserManager um, UserInfo user) {
Evan Roskyaa7f51f2016-03-16 13:15:53 -0700143 final int iconSize = UserIconDrawable.getSizeForList(context);
Wei Liu30275c12015-08-24 17:35:49 -0700144 if (user.isManagedProfile()) {
Tony Mak34942ab2018-03-06 11:24:51 +0000145 Drawable drawable = UserIconDrawable.getManagedUserDrawable(context);
Daniel Nishi07d0f592017-08-21 15:50:11 -0700146 drawable.setBounds(0, 0, iconSize, iconSize);
147 return drawable;
Wei Liu30275c12015-08-24 17:35:49 -0700148 }
149 if (user.iconPath != null) {
150 Bitmap icon = um.getUserIcon(user.id);
151 if (icon != null) {
Evan Roskyaa7f51f2016-03-16 13:15:53 -0700152 return new UserIconDrawable(iconSize).setIcon(icon).bake();
Wei Liu30275c12015-08-24 17:35:49 -0700153 }
154 }
Evan Roskyaa7f51f2016-03-16 13:15:53 -0700155 return new UserIconDrawable(iconSize).setIconDrawable(
Tony Mak213955e2017-11-23 16:57:08 +0800156 UserIcons.getDefaultUserIcon(context.getResources(), user.id, /* light= */ false))
157 .bake();
Wei Liu30275c12015-08-24 17:35:49 -0700158 }
Jason Monkc06fbb12016-01-08 14:12:18 -0500159
jackqdyulei5dc1f362017-02-17 14:41:05 -0800160 /** Formats a double from 0.0..100.0 with an option to round **/
161 public static String formatPercentage(double percentage, boolean round) {
162 final int localPercentage = round ? Math.round((float) percentage) : (int) percentage;
163 return formatPercentage(localPercentage);
164 }
165
Jason Monkc06fbb12016-01-08 14:12:18 -0500166 /** Formats the ratio of amount/total as a percentage. */
167 public static String formatPercentage(long amount, long total) {
168 return formatPercentage(((double) amount) / total);
169 }
170
171 /** Formats an integer from 0..100 as a percentage. */
172 public static String formatPercentage(int percentage) {
173 return formatPercentage(((double) percentage) / 100.0);
174 }
175
176 /** Formats a double from 0.0..1.0 as a percentage. */
Daniel Nishi3f94f682017-06-27 14:38:06 -0700177 public static String formatPercentage(double percentage) {
jackqdyulei5dc1f362017-02-17 14:41:05 -0800178 return NumberFormat.getPercentInstance().format(percentage);
Jason Monkc06fbb12016-01-08 14:12:18 -0500179 }
180
181 public static int getBatteryLevel(Intent batteryChangedIntent) {
182 int level = batteryChangedIntent.getIntExtra(BatteryManager.EXTRA_LEVEL, 0);
183 int scale = batteryChangedIntent.getIntExtra(BatteryManager.EXTRA_SCALE, 100);
184 return (level * 100) / scale;
185 }
186
187 public static String getBatteryStatus(Resources res, Intent batteryChangedIntent) {
Muyuan Li18d2b322016-03-31 13:53:56 -0700188 int status = batteryChangedIntent.getIntExtra(BatteryManager.EXTRA_STATUS,
Jason Monkc06fbb12016-01-08 14:12:18 -0500189 BatteryManager.BATTERY_STATUS_UNKNOWN);
190 String statusString;
191 if (status == BatteryManager.BATTERY_STATUS_CHARGING) {
jackqdyulei806f78d2017-03-24 12:13:49 -0700192 statusString = res.getString(R.string.battery_info_status_charging);
Jason Monkc06fbb12016-01-08 14:12:18 -0500193 } else if (status == BatteryManager.BATTERY_STATUS_DISCHARGING) {
194 statusString = res.getString(R.string.battery_info_status_discharging);
195 } else if (status == BatteryManager.BATTERY_STATUS_NOT_CHARGING) {
196 statusString = res.getString(R.string.battery_info_status_not_charging);
197 } else if (status == BatteryManager.BATTERY_STATUS_FULL) {
198 statusString = res.getString(R.string.battery_info_status_full);
199 } else {
200 statusString = res.getString(R.string.battery_info_status_unknown);
201 }
202
203 return statusString;
204 }
Julia Reynolds21c30542016-01-15 15:00:02 -0500205
Andrew Sapperstein5c373442016-06-12 13:17:16 -0700206 @ColorInt
207 public static int getColorAccent(Context context) {
Jason Monk32508852017-01-18 09:17:13 -0500208 return getColorAttr(context, android.R.attr.colorAccent);
Andrew Sapperstein5c373442016-06-12 13:17:16 -0700209 }
210
jackqdyuleib68fd7a2017-01-04 15:43:26 -0800211 @ColorInt
212 public static int getColorError(Context context) {
Jason Monk58be7a62017-02-01 20:17:51 -0500213 return getColorAttr(context, android.R.attr.colorError);
jackqdyuleib68fd7a2017-01-04 15:43:26 -0800214 }
215
216 @ColorInt
217 public static int getDefaultColor(Context context, int resId) {
218 final ColorStateList list =
219 context.getResources().getColorStateList(resId, context.getTheme());
220
221 return list.getDefaultColor();
222 }
223
Jason Monk32508852017-01-18 09:17:13 -0500224 @ColorInt
225 public static int getDisabled(Context context, int inputColor) {
226 return applyAlphaAttr(context, android.R.attr.disabledAlpha, inputColor);
227 }
228
229 @ColorInt
230 public static int applyAlphaAttr(Context context, int attr, int inputColor) {
231 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
232 float alpha = ta.getFloat(0, 0);
233 ta.recycle();
Jason Monk824ffff2017-04-11 15:49:06 -0400234 return applyAlpha(alpha, inputColor);
235 }
236
237 @ColorInt
238 public static int applyAlpha(float alpha, int inputColor) {
Jason Monk32508852017-01-18 09:17:13 -0500239 alpha *= Color.alpha(inputColor);
240 return Color.argb((int) (alpha), Color.red(inputColor), Color.green(inputColor),
241 Color.blue(inputColor));
242 }
243
244 @ColorInt
245 public static int getColorAttr(Context context, int attr) {
246 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
247 @ColorInt int colorAccent = ta.getColor(0, 0);
248 ta.recycle();
249 return colorAccent;
250 }
251
Jason Monk9a376bc2017-05-10 09:52:10 -0400252 public static int getThemeAttr(Context context, int attr) {
253 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
254 int theme = ta.getResourceId(0, 0);
255 ta.recycle();
256 return theme;
257 }
258
Jason Monk790442e2017-02-13 17:49:39 -0500259 public static Drawable getDrawable(Context context, int attr) {
260 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
261 Drawable drawable = ta.getDrawable(0);
262 ta.recycle();
263 return drawable;
264 }
265
Julia Reynolds21c30542016-01-15 15:00:02 -0500266 /**
267 * Determine whether a package is a "system package", in which case certain things (like
268 * disabling notifications or disabling the package altogether) should be disallowed.
269 */
Tony Makbfba9d42016-07-14 15:29:44 +0800270 public static boolean isSystemPackage(Resources resources, PackageManager pm, PackageInfo pkg) {
Julia Reynolds21c30542016-01-15 15:00:02 -0500271 if (sSystemSignature == null) {
Daniel Nishi84522e02018-01-23 18:27:22 -0800272 sSystemSignature = new Signature[]{getSystemSignature(pm)};
Julia Reynolds21c30542016-01-15 15:00:02 -0500273 }
Svet Ganov81fb0d42016-03-04 09:27:23 -0800274 if (sPermissionControllerPackageName == null) {
275 sPermissionControllerPackageName = pm.getPermissionControllerPackageName();
276 }
Svetoslav Ganova9c25002016-04-13 19:25:56 -0700277 if (sServicesSystemSharedLibPackageName == null) {
278 sServicesSystemSharedLibPackageName = pm.getServicesSystemSharedLibraryPackageName();
279 }
280 if (sSharedSystemSharedLibPackageName == null) {
281 sSharedSystemSharedLibPackageName = pm.getSharedSystemSharedLibraryPackageName();
282 }
Svet Ganov81fb0d42016-03-04 09:27:23 -0800283 return (sSystemSignature[0] != null
Daniel Nishi84522e02018-01-23 18:27:22 -0800284 && sSystemSignature[0].equals(getFirstSignature(pkg)))
Svetoslav Ganova9c25002016-04-13 19:25:56 -0700285 || pkg.packageName.equals(sPermissionControllerPackageName)
286 || pkg.packageName.equals(sServicesSystemSharedLibPackageName)
Philip P. Moltmann545a58a2016-06-28 14:14:06 -0700287 || pkg.packageName.equals(sSharedSystemSharedLibPackageName)
Tony Makbfba9d42016-07-14 15:29:44 +0800288 || pkg.packageName.equals(PrintManager.PRINT_SPOOLER_PACKAGE_NAME)
289 || isDeviceProvisioningPackage(resources, pkg.packageName);
Julia Reynolds21c30542016-01-15 15:00:02 -0500290 }
291
Julia Reynolds21c30542016-01-15 15:00:02 -0500292 private static Signature getFirstSignature(PackageInfo pkg) {
293 if (pkg != null && pkg.signatures != null && pkg.signatures.length > 0) {
294 return pkg.signatures[0];
295 }
296 return null;
297 }
298
299 private static Signature getSystemSignature(PackageManager pm) {
300 try {
301 final PackageInfo sys = pm.getPackageInfo("android", PackageManager.GET_SIGNATURES);
302 return getFirstSignature(sys);
303 } catch (NameNotFoundException e) {
304 }
305 return null;
306 }
Tony Makbfba9d42016-07-14 15:29:44 +0800307
308 /**
309 * Returns {@code true} if the supplied package is the device provisioning app. Otherwise,
310 * returns {@code false}.
311 */
312 public static boolean isDeviceProvisioningPackage(Resources resources, String packageName) {
313 String deviceProvisioningPackage = resources.getString(
314 com.android.internal.R.string.config_deviceProvisioningPackage);
315 return deviceProvisioningPackage != null && deviceProvisioningPackage.equals(packageName);
316 }
Sundeep Ghumanf84e0572017-01-10 13:43:03 -0800317
318 /**
Eric Schwarzenbach44268e32017-08-04 16:38:07 -0700319 * Returns the Wifi icon resource for a given RSSI level.
Sundeep Ghumanf84e0572017-01-10 13:43:03 -0800320 *
Sundeep Ghumanf84e0572017-01-10 13:43:03 -0800321 * @param level The number of bars to show (0-4)
Eric Schwarzenbach44268e32017-08-04 16:38:07 -0700322 * @throws IllegalArgumentException if an invalid RSSI level is given.
Sundeep Ghumanf84e0572017-01-10 13:43:03 -0800323 */
Eric Schwarzenbach44268e32017-08-04 16:38:07 -0700324 public static int getWifiIconResource(int level) {
325 if (level < 0 || level >= WIFI_PIE.length) {
326 throw new IllegalArgumentException("No Wifi icon found for level: " + level);
Sundeep Ghumanf84e0572017-01-10 13:43:03 -0800327 }
Eric Schwarzenbach44268e32017-08-04 16:38:07 -0700328 return WIFI_PIE[level];
Sundeep Ghumanf84e0572017-01-10 13:43:03 -0800329 }
Daniel Nishi53982802017-05-23 15:54:34 -0700330
331 public static int getDefaultStorageManagerDaysToRetain(Resources resources) {
332 int defaultDays = Settings.Secure.AUTOMATIC_STORAGE_MANAGER_DAYS_TO_RETAIN_DEFAULT;
333 try {
334 defaultDays =
335 resources.getInteger(
336 com.android
337 .internal
338 .R
339 .integer
340 .config_storageManagerDaystoRetainDefault);
341 } catch (Resources.NotFoundException e) {
342 // We are likely in a test environment.
343 }
344 return defaultDays;
345 }
Tony Mantler88920142017-10-20 15:03:56 -0700346
347 public static boolean isWifiOnly(Context context) {
348 return !context.getSystemService(ConnectivityManager.class)
349 .isNetworkSupported(ConnectivityManager.TYPE_MOBILE);
350 }
Daniel Nishi84522e02018-01-23 18:27:22 -0800351
352 /** Returns if the automatic storage management feature is turned on or not. **/
353 public static boolean isStorageManagerEnabled(Context context) {
354 boolean isDefaultOn;
355 try {
Daniel Nishi7a118342019-01-10 15:40:23 -0800356 isDefaultOn = SystemProperties.getBoolean(STORAGE_MANAGER_ENABLED_PROPERTY, false);
Daniel Nishi84522e02018-01-23 18:27:22 -0800357 } catch (Resources.NotFoundException e) {
358 isDefaultOn = false;
359 }
360 return Settings.Secure.getInt(context.getContentResolver(),
361 Settings.Secure.AUTOMATIC_STORAGE_MANAGER_ENABLED,
362 isDefaultOn ? 1 : 0)
363 != 0;
364 }
timhypeng1b25c9a2018-04-23 18:08:47 +0800365
366 /**
367 * get that {@link AudioManager#getMode()} is in ringing/call/communication(VoIP) status.
368 */
369 public static boolean isAudioModeOngoingCall(Context context) {
370 final AudioManager audioManager = context.getSystemService(AudioManager.class);
371 final int audioMode = audioManager.getMode();
372 return audioMode == AudioManager.MODE_RINGTONE
373 || audioMode == AudioManager.MODE_IN_CALL
374 || audioMode == AudioManager.MODE_IN_COMMUNICATION;
375 }
Wei Liu30275c12015-08-24 17:35:49 -0700376}