Added automatic capitalization to profile name fields.

Resolves #13544
This commit is contained in:
BenjaminMuslic 2024-04-30 14:24:44 -05:00 committed by Alex Hart
parent cc98eced27
commit c261df41b0

View file

@ -36,7 +36,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autofillHints="personGivenName"
android:inputType="textPersonName"
android:inputType="textCapWords|textPersonName"
android:singleLine="true" />
</com.google.android.material.textfield.TextInputLayout>
@ -59,7 +59,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autofillHints="personFamilyName"
android:inputType="textPersonName"
android:inputType="textCapWords|textPersonName"
android:singleLine="true" />
</com.google.android.material.textfield.TextInputLayout>