根据API documentation,设备所有者应用可以通过以下调用来修改一些“安全设置”,尤其是LOCATION_MODE

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



  个人资料或设备所有者致电以更新设置。安全设置
  [...]
  
  设备所有者可以另外更新以下设置:
  LOCATION_MODE


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

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

我错过了什么 ?

最佳答案

解决方案是简单地使用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时,您可以阅读:


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

10-08 03:31