我正在我的应用程序中实现Android的Biometric提示,当我按下“取消”按钮关闭提示时,我收到onAuthenticationError
的回调,其中errorCode
为13。但是,我没有看到任何错误代码文档(https://developer.android.com/reference/android/hardware/biometrics/BiometricPrompt.html)中的值为13。有人可以帮忙吗?
答案 0 :(得分:0)
啊,在浏览Android Biometric源代码后,发现了BiometricConstants.ERROR_NEGATIVE_BUTTON
。它应该在类文档中捕获。
答案 1 :(得分:0)
您可能正在看的是android.hardware.biometric文档,而不是androidx.biometric documentation。 androidx.biometric上的ERROR_NEGATIVE_BUTTON
API与框架版本的OnClickListener
略有不同。