Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Android 中读取 ScreenLock 的设置?屏幕锁是否为无/滑动/图案/PIN/密码锁?
我只能找到一个 API 来知道它是否是模式锁定。
谢谢你
查看此处提出的类似问题。使用 KeyguardManager 检查设备是否被锁定。
KeyguardManager kgMgr = (KeyguardManager) getSystemService(Context.KEYGUARD_SERVICE); 布尔显示 = kgMgr.inKeyguardRestrictedInputMode();