在设备所有者应用中启用 GPS
Enable GPS in a device owner app
根据 API documentation a device owner app can modify a few "secure settings" and specially the LOCATION_MODE 进行以下调用:
devicePolicyManager.setSecureSetting (ComponentName admin,
String setting,
String value)
Called by profile or device owners to update Settings.Secure settings
[...]
A device owner can additionally update the following settings:
LOCATION_MODE
根据我的理解,LOCATION_MODE 的值是一个整数(分别为 0 表示禁用定位,1 表示仅 GPS,2 表示省电模式,3 表示高精度)。
我的问题是 String value
参数的类型。 LOCATION_MODE 需要一个整数,但是 API 需要一个字符串。
我是不是漏掉了什么?
解决方案是简单地使用 int 值的 String 表示形式。
例如启用"gps only"定位模式:
DevicePolicyManager dpm = (DevicePolicyManager) context.getSystemService(Context.DEVICE_POLICY_SERVICE);
if (dpm.isDeviceOwnerApp(context.getPackageName())) {
ComponentName componentName = new ComponentName(context, MyDeviceAdmin.class);
dpm.setSecureSetting(componentName, Settings.Secure.LOCATION_MODE, String.valueOf(Settings.Secure.LOCATION_MODE_SENSORS_ONLY));
}
[感谢@Selvin 的评论]
这是有道理的,因为在深入研究 LOCATION_MODE 的 javadoc 时,您可以阅读:
Note that internally setting values are always stored as strings[...]
根据 API documentation a device owner app can modify a few "secure settings" and specially the LOCATION_MODE 进行以下调用:
devicePolicyManager.setSecureSetting (ComponentName admin,
String setting,
String value)
Called by profile or device owners to update Settings.Secure settings [...]
A device owner can additionally update the following settings: LOCATION_MODE
根据我的理解,LOCATION_MODE 的值是一个整数(分别为 0 表示禁用定位,1 表示仅 GPS,2 表示省电模式,3 表示高精度)。
我的问题是 String value
参数的类型。 LOCATION_MODE 需要一个整数,但是 API 需要一个字符串。
我是不是漏掉了什么?
解决方案是简单地使用 int 值的 String 表示形式。
例如启用"gps only"定位模式:
DevicePolicyManager dpm = (DevicePolicyManager) context.getSystemService(Context.DEVICE_POLICY_SERVICE);
if (dpm.isDeviceOwnerApp(context.getPackageName())) {
ComponentName componentName = new ComponentName(context, MyDeviceAdmin.class);
dpm.setSecureSetting(componentName, Settings.Secure.LOCATION_MODE, String.valueOf(Settings.Secure.LOCATION_MODE_SENSORS_ONLY));
}
[感谢@Selvin 的评论]
这是有道理的,因为在深入研究 LOCATION_MODE 的 javadoc 时,您可以阅读:
Note that internally setting values are always stored as strings[...]