屏幕锁具有一些良好的安全机制。 (如针,密码,图案......)
我的AP希望有类似的安全机制
是否可以调用屏幕锁定安全机制?
(所以我的AP只需要知道结果,而不需要自己处理安全性)
答案 0 :(得分:3)
我找到了一种方法,为某人参考
//put below source code in where you want to launch password UI
km = (KeyguardManager) getSystemService(context.KEYGUARD_SERVICE);
if(km.isKeyguardSecure()) {
Intent i = km.createConfirmDeviceCredentialIntent(null, null);
activity.startActivityForResult(i, 1234);
}
// call back when password is correct
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1234) {
if (resultCode == RESULT_OK) {
//do something you want when pass the security
}
}
}