Controls a11y - Ensure minHeight on dialogs

Touchable areas in PIN/passphrase dialog prompts need minHeight

Bug: 152934177
Test: manual, hsv
Change-Id: I76a708f4d142df8c38709bc5e3ca9ee11362a96f
This commit is contained in:
Matt Pietal
2020-04-13 09:22:11 -04:00
parent aec74e1a62
commit 628061fb2b

View File

@@ -25,6 +25,7 @@
android:id="@+id/controls_pin_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="48dp"
android:hint="@string/controls_pin_instructions"
android:inputType="numberPassword" />
<CheckBox
@@ -32,5 +33,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:minHeight="48dp"
android:text="@string/controls_pin_use_alphanumeric" />
</LinearLayout>