Merge "Update content description for BP icon after auth" into udc-d1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
cbce6969b5
@@ -432,6 +432,8 @@
|
|||||||
<string name="face_reenroll_failure_dialog_content">Couldn\u2019t set up face unlock. Go to Settings to try again.</string>
|
<string name="face_reenroll_failure_dialog_content">Couldn\u2019t set up face unlock. Go to Settings to try again.</string>
|
||||||
<!-- Message shown when the system-provided fingerprint dialog is shown, asking for authentication -->
|
<!-- Message shown when the system-provided fingerprint dialog is shown, asking for authentication -->
|
||||||
<string name="fingerprint_dialog_touch_sensor">Touch the fingerprint sensor</string>
|
<string name="fingerprint_dialog_touch_sensor">Touch the fingerprint sensor</string>
|
||||||
|
<!-- Content description after successful auth when confirmation required -->
|
||||||
|
<string name="fingerprint_dialog_authenticated_confirmation">Press the unlock icon to continue</string>
|
||||||
<!-- Message shown to inform the user a face cannot be recognized and fingerprint should instead be used.[CHAR LIMIT=50] -->
|
<!-- Message shown to inform the user a face cannot be recognized and fingerprint should instead be used.[CHAR LIMIT=50] -->
|
||||||
<string name="fingerprint_dialog_use_fingerprint_instead">Can\u2019t recognize face. Use fingerprint instead.</string>
|
<string name="fingerprint_dialog_use_fingerprint_instead">Can\u2019t recognize face. Use fingerprint instead.</string>
|
||||||
<!-- Message shown to inform the user a face cannot be recognized and fingerprint should instead be used.[CHAR LIMIT=50] -->
|
<!-- Message shown to inform the user a face cannot be recognized and fingerprint should instead be used.[CHAR LIMIT=50] -->
|
||||||
|
|||||||
@@ -142,13 +142,18 @@ open class AuthBiometricFingerprintIconController(
|
|||||||
STATE_IDLE,
|
STATE_IDLE,
|
||||||
STATE_AUTHENTICATING_ANIMATING_IN,
|
STATE_AUTHENTICATING_ANIMATING_IN,
|
||||||
STATE_AUTHENTICATING,
|
STATE_AUTHENTICATING,
|
||||||
STATE_PENDING_CONFIRMATION,
|
|
||||||
STATE_AUTHENTICATED ->
|
STATE_AUTHENTICATED ->
|
||||||
if (isSideFps) {
|
if (isSideFps) {
|
||||||
R.string.security_settings_sfps_enroll_find_sensor_message
|
R.string.security_settings_sfps_enroll_find_sensor_message
|
||||||
} else {
|
} else {
|
||||||
R.string.fingerprint_dialog_touch_sensor
|
R.string.fingerprint_dialog_touch_sensor
|
||||||
}
|
}
|
||||||
|
STATE_PENDING_CONFIRMATION ->
|
||||||
|
if (isSideFps) {
|
||||||
|
R.string.security_settings_sfps_enroll_find_sensor_message
|
||||||
|
} else {
|
||||||
|
R.string.fingerprint_dialog_authenticated_confirmation
|
||||||
|
}
|
||||||
STATE_ERROR,
|
STATE_ERROR,
|
||||||
STATE_HELP -> R.string.biometric_dialog_try_again
|
STATE_HELP -> R.string.biometric_dialog_try_again
|
||||||
else -> null
|
else -> null
|
||||||
|
|||||||
Reference in New Issue
Block a user