Android - KeyguardManager 是否需要使用指纹?
Android - is KeyguardManager necessary to use fingerprint?
目前正在 this tutorial 之后实施指纹认证,其中 KeyguardManager
实例化为:
[...] verify that a backup screen unlocking method has been configured (in
other words a PIN or other authentication method can be used as an
alternative to fingerprint authentication to unlock the screen).
问题:我想知道是否真的需要KeyguardManager
才能使用指纹认证。
谢谢,
您不能在您的应用程序中以独立模式使用指纹验证,例如在同一设备上注册多个用户指纹。
当您在您的应用中使用指纹验证时,android检查用户指纹是否与注册指纹之一匹配以解锁设备。
指纹只能在设置解锁中注册Android,您的应用无法注册。
目前正在 this tutorial 之后实施指纹认证,其中 KeyguardManager
实例化为:
[...] verify that a backup screen unlocking method has been configured (in other words a PIN or other authentication method can be used as an alternative to fingerprint authentication to unlock the screen).
问题:我想知道是否真的需要KeyguardManager
才能使用指纹认证。
谢谢,
您不能在您的应用程序中以独立模式使用指纹验证,例如在同一设备上注册多个用户指纹。
当您在您的应用中使用指纹验证时,android检查用户指纹是否与注册指纹之一匹配以解锁设备。
指纹只能在设置解锁中注册Android,您的应用无法注册。