在android中如何知道用户是否使用pin/密码/指纹/脸部解锁了他的设备?
在 Android 中,我们可以获取用户是否使用以下任一方法解锁手机:
- PIN
- 密码
- FingerPrint
- FaceID
In android can we get if the user unlocked his phone with either of below method:
- PIN
- Password
- FingerPrint
- FaceID
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在本机和 hbrid 中使用来自
DeviceAdminReceiver
服务的onPasswordSucceeded
回调函数。当用户正确的 PIN 码时触发此功能。You can use
onPasswordSucceeded
callback function fromDeviceAdminReceiver
services in native and hbrid both. This function triggers when user correct PIN code.