如果你的App需要验证密码,我们可以使用系统的ScreenLock来进行验证,这样做的好处是我们的用户不必使用多个不同的密码来验证身份,OK,下面我们来看看如何使用系统锁屏:
先来介绍几个Framework里面的锁屏相关的类:
LockPatternUtils:这里提供了锁屏的一些帮助类,我们最需要使用的是这样一个方法:
public boolean isSecure() { long mode = getKeyguardStoredPasswordQuality(); final boolean isPattern = mode == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING; final boolean isPassword = mode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC || mode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX; final boolean secure = isPattern && isLockPatternEnabled() && savedPatternExists() || isPassword && savedPasswordExists(); return secure; }
这个方法用来检测当前系统是否已经使用了锁屏。
ChooseLockGeneric:这个类是我们设置锁屏的主要类:
我们通过调用这个类来引导用户增加一个系统锁屏:
Intent intent = new Intent("/"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); ComponentName cm = new ComponentName("com.android.settings","com.android.settings.ChooseLockGenericForKS"); intent.setComponent(cm); startActivity(intent);
那么如何进行锁屏的验证呢,我们可以使用这样一个方法:
private boolean runKeyguardConfirmation(int request) { Resources res = getActivity().getResources(); return new ChooseLockSettingsHelper(getActivity(), this) .launchConfirmationActivity(request, res.getText(R.string.master_clear_gesture_prompt), res.getText(R.string.master_clear_gesture_explanation)); }
我们需要在调用的Activity中使用onActivityResult来获取返回值:
if (requestCode == 55 && resultCode == Activity.RESULT_OK) {
55是我们的request code。
通过以上方法,我们就可以在我们的App中添加验证、增加系统锁屏验证了。
以上。
时间: 2024-09-27 05:02:39