您好,登錄后才能下訂單哦!
本篇內容介紹了“如何使用androidx BiometricPrompt實現指紋驗證功能”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
androidsdk版本大于29之后,使用FingerprintManagerCompat進行指紋驗證顯示被廢棄,FingerprintManagerCompat的使用方法這里不再敘述。骨骼要求使用新的api去完成指紋驗證,當然,BiometricPrompt不僅能做指紋驗證,本文只講解怎么用BiometricPrompt做指紋驗證。
官方api:https://developer.android.google.cn/reference/androidx/biometric/package-summary?hl=zh-cn
首先導包
implementation 'androidx.biometric:biometric:1.0.1'
然后它的構造方法
1.BiometricPrompt(@NonNull FragmentActivity fragmentActivity, @NonNull Executor executor, @NonNull AuthenticationCallback callback) 2. BiometricPrompt(@NonNull Fragment fragment, @NonNull Executor executor, @NonNull AuthenticationCallback callback)
兩個構造方法參數基本一致,executor里面是一個runnable接口,在每次進行指紋操作后都會回調這個方法,注意:要想AuthenticationCallback的方法生效,必須在runnable里面執行runnable的run方法。
callback里面有三個回調方法,
1. onAuthenticationError(int errMsgId, CharSequence errString),指紋驗證錯誤會調用此方法,errMsgId的值對應BiometricPrompt里面的常量
2. onAuthenticationSucceeded(@NonNull @NotNull BiometricPrompt.AuthenticationResult result),指紋驗證成功后調用,通過result.getAuthenticationType獲取驗證成功的方式,參數類型自行查看。
3. onAuthenticationFailed() 識別失敗調用,具體調用時機不太清楚。。可以參考官方文檔說法
顯示指紋驗證需要一個BiometricPrompt.PromptInfo參數,會彈起一個彈窗進行顯示,使用builder的方式初始化,可以設置title,subTitle,description,NegativeButtonText,用法如下
new BiometricPrompt.PromptInfo.Builder().setTitle("title") .setSubtitle("subTitle") .setDescription("description") .setDeviceCredentialAllowed(false) .setNegativeButtonText("button").build()
需要注意的是setDeviceCredentialAllowed與setNegativeButtonText只能存在一個,即setNegativeButtonText不為空setDeviceCredentialAllowed必須為false
驗證設備是否開啟指紋通過BiometricManager.from(context).canAuthenticate() == BiometricManager.BIOMETRIC_SUCCESS方法;
代碼展示:
private BiometricPrompt biometricPrompt; private void startFinger(){ biometricPrompt = new BiometricPrompt(this, new Executor() { @Override public void execute(Runnable command) { command.run(); } }, new FingerCallBack()); biometricPrompt.authenticate( new BiometricPrompt.PromptInfo.Builder().setTitle("title") .setSubtitle("subTitle") .setDescription("description") .setDeviceCredentialAllowed(false) .setNegativeButtonText("button").build()); } private void cancelFinger() { if (biometricPrompt != null) { biometricPrompt.cancelAuthentication(); } } private class FingerCallBack extends BiometricPrompt.AuthenticationCallback { @Override public void onAuthenticationError(int errMsgId, CharSequence errString) { super.onAuthenticationError(errMsgId, errString); Log.e("fingers", "onAuthenticationError"); } @Override public void onAuthenticationSucceeded(@NonNull @NotNull BiometricPrompt.AuthenticationResult result) { super.onAuthenticationSucceeded(result); cancelFinger(); Log.e("fingers", "識別成功 onAuthenticationSucceeded"); } @Override public void onAuthenticationFailed() { super.onAuthenticationFailed(); Log.e("fingers", "onAuthenticationFailed "); } }
“如何使用androidx BiometricPrompt實現指紋驗證功能”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。