Android 指纹 api - FingerprintManager.AuthenticationCallback 未在 SCREEN_ON 意图之后调用
Android fingerprint api - FingerprintManager.AuthenticationCallback not called after SCREEN_ON intent
我正在编写一个使用本机 Android 指纹 API(在 Android 6.0 及更高版本上)对用户进行身份验证的应用程序。
在一种情况下 - 设备收到 Gcm 通知,如果屏幕关闭但 phone 未锁定 - 应用程序 "wakes" 通过启动 activity
设备以下标志:
WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON | WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
该应用随后会显示一个对话框,要求用户使用他的手指进行身份验证。在这种情况下 - 没有调用回调函数(来自 FingerprintManager.AuthenticationCallback
- )
代码如下:
fingerprintManager.authenticate(null, cancellationSignal, 0, new FingerprintManager.AuthenticationCallback() {
@Override
public void onAuthenticationError(int errorCode, CharSequence errString) {
super.onAuthenticationError(errorCode, errString);
logger.info("Authentication error " + errorCode + " " + errString);
...
}
@Override
public void onAuthenticationHelp(int helpCode, CharSequence helpString) {
super.onAuthenticationHelp(helpCode, helpString);
logger.info("Authentication help message thrown " + helpCode + " " + helpString);
...
}
@Override
public void onAuthenticationSucceeded(FingerprintManager.AuthenticationResult result) {
super.onAuthenticationSucceeded(result);
logger.info("Authentication succeeded");
...
}
/*
* Called when authentication failed but the user can try again
* When called four times - on the next fail onAuthenticationError(FINGERPRINT_ERROR_LOCKOUT)
* will be called
*/
@Override
public void onAuthenticationFailed() {
super.onAuthenticationFailed();
logger.info("Authentication failed");
...
}
}, null);
相同的代码在屏幕打开和关闭时运行,但当它关闭并由 activity 打开时 - 回调不会被调用。
有什么想法吗?
提前致谢!
我注意到了同样的问题,在 adb logcat
我看到了下一行:
W/FingerprintManager: authentication already canceled
我深入搜索了源代码,在 FingerprintManager
中找到了以下函数:
if (cancel != null) {
if (cancel.isCanceled()) {
Log.w(TAG, "authentication already canceled");
return;
} else {
cancel.setOnCancelListener(new OnAuthenticationCancelListener(crypto));
}
}
这意味着,您正在进入 authenticate()
功能,并且已经 取消了 cancellationSignal
。只需在 之前添加以下内容 您的 authenticate()
:
if(cancellationSignal.isCanceled()){
cancellationSignal = new CancellationSignal();
}
这样您将始终通过未取消的 cancellationSignal
并且您的流程将是正确的。
我正在编写一个使用本机 Android 指纹 API(在 Android 6.0 及更高版本上)对用户进行身份验证的应用程序。
在一种情况下 - 设备收到 Gcm 通知,如果屏幕关闭但 phone 未锁定 - 应用程序 "wakes" 通过启动 activity
设备以下标志:
WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON | WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
该应用随后会显示一个对话框,要求用户使用他的手指进行身份验证。在这种情况下 - 没有调用回调函数(来自 FingerprintManager.AuthenticationCallback
- )
代码如下:
fingerprintManager.authenticate(null, cancellationSignal, 0, new FingerprintManager.AuthenticationCallback() {
@Override
public void onAuthenticationError(int errorCode, CharSequence errString) {
super.onAuthenticationError(errorCode, errString);
logger.info("Authentication error " + errorCode + " " + errString);
...
}
@Override
public void onAuthenticationHelp(int helpCode, CharSequence helpString) {
super.onAuthenticationHelp(helpCode, helpString);
logger.info("Authentication help message thrown " + helpCode + " " + helpString);
...
}
@Override
public void onAuthenticationSucceeded(FingerprintManager.AuthenticationResult result) {
super.onAuthenticationSucceeded(result);
logger.info("Authentication succeeded");
...
}
/*
* Called when authentication failed but the user can try again
* When called four times - on the next fail onAuthenticationError(FINGERPRINT_ERROR_LOCKOUT)
* will be called
*/
@Override
public void onAuthenticationFailed() {
super.onAuthenticationFailed();
logger.info("Authentication failed");
...
}
}, null);
相同的代码在屏幕打开和关闭时运行,但当它关闭并由 activity 打开时 - 回调不会被调用。
有什么想法吗? 提前致谢!
我注意到了同样的问题,在 adb logcat
我看到了下一行:
W/FingerprintManager: authentication already canceled
我深入搜索了源代码,在 FingerprintManager
中找到了以下函数:
if (cancel != null) {
if (cancel.isCanceled()) {
Log.w(TAG, "authentication already canceled");
return;
} else {
cancel.setOnCancelListener(new OnAuthenticationCancelListener(crypto));
}
}
这意味着,您正在进入 authenticate()
功能,并且已经 取消了 cancellationSignal
。只需在 之前添加以下内容 您的 authenticate()
:
if(cancellationSignal.isCanceled()){
cancellationSignal = new CancellationSignal();
}
这样您将始终通过未取消的 cancellationSignal
并且您的流程将是正确的。