在设备所有者应用

时间:2016-12-22 15:42:39

标签: java android gps device-owner

根据API documentation,设备所有者应用可以修改一些"安全设置"特别是LOCATION_MODE以及以下电话:

devicePolicyManager.setSecureSetting (ComponentName admin, 
            String setting, 
            String value)
  

由个人资料或设备所有者调用以更新Settings.Secure设置   [...]

     

设备所有者可以另外更新以下设置:   LOCATION_MODE

根据我的理解,LOCATION_MODE的值是一个int(对于禁用位置,分别为0,仅对于GPS为1,对于省电模式为2,对于高精度为3)。

我的问题是String value参数的类型。 LOCATION_MODE需要一个int,但API需要一个String。

我错过了什么吗?

1 个答案:

答案 0 :(得分:2)

解决方案只是使用int值的String表示。

例如,仅启用" gps"位置模式:

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时,您可以阅读:

  

请注意,内部设置值始终存储为字符串[...]