In my application i use BiometricManager
for creating system verification dialog:
mBiometricManager = new ch.instaguard2.insta.app.utils.biometric.BiometricManager.BiometricBuilder(BaseActivity.this)
.setTitle(L.Companion.get(R.string.enhance_security))
.setSubtitle(getString(R.string.app_name))
.setDescription(L.Companion.get(R.string.biometric_description))
.setNegativeButtonText(L.Companion.get(R.string.use_pin_code))
.build();
//start authentication
mBiometricManager.authenticate(this);
But it has only dismisDialog()
method for control this dialog. How i can check is dialog showing now (like default dialog.isShown()
)?
I'm not sure, but something like this could be approached:
Changing the isBiometricDialogShowing value can control whether the biometric authentication dialog is displayed or not.