问题描述
有没有一种方法以编程方式更改手机屏幕锁的方法?例如,改变它来显示图案,针,刷卡开锁或根本没有。
Is there a way to programmatically change the phones screen lock method? For example, changing it to display a pattern, a pin, swipe unlock or none at all.
例如,想想一个小部件,可以让刷卡解锁和锁定模式之间的切换用户的。
For example, think of a widget that lets the user toggle between swipe to unlock and pattern lock.
的CyanogenMod在他们的个人资料这样的事情,使用 PROFILE_SERVICE 但似乎并没有被公开的API中。
Cyanogenmod has something like this in their profiles, using PROFILE_SERVICE but that does not seem to be in the public API.
推荐答案
不完全是。通过 DevicePolicyManager
,您可以指定密码一些最低的质量特性,并强制用户重置其密码以满足这些特性。但是:
Not exactly. Through DevicePolicyManager
, you can specify some minimum quality characteristics for a password, and force the user to reset their password to meet those characteristics. However:
- 用户总是可以选择一些比你强需要什么
- 这要求用户配置的应用程序作为设备管理员
- 这需要额外的权限
- 用户永远是参与了密码重置过程
这篇关于更改屏幕锁定的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!