Merge "Fix BiometricPrompt double TalkBack announcement" into rvc-dev am: 060a546ba1 am: 9960dffa75 am: 6497cdf83a am: 532526edc6

Change-Id: I204829dc3e871f48eac20474c06eae01122438ab
This commit is contained in:
Curtis Belmonte
2020-05-11 21:19:05 +00:00
committed by Automerger Merge Worker
2 changed files with 1 additions and 1 deletions

View File

@@ -23,7 +23,6 @@
android:id="@+id/background" android:id="@+id/background"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:accessibilityLiveRegion="polite"
android:background="@color/biometric_dialog_dim_color" android:background="@color/biometric_dialog_dim_color"
android:contentDescription="@string/biometric_dialog_empty_space_description"/> android:contentDescription="@string/biometric_dialog_empty_space_description"/>

View File

@@ -306,6 +306,7 @@ public class AuthContainerView extends LinearLayout
return true; return true;
}); });
setImportantForAccessibility(IMPORTANT_FOR_ACCESSIBILITY_NO);
setFocusableInTouchMode(true); setFocusableInTouchMode(true);
requestFocus(); requestFocus();
} }