使用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實現指紋驗證的文章就介紹到這瞭,更多相關androidx指紋驗證內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: