Fix capitalization of multiple text fields

This commit is contained in:
Michael Schättgen 2024-09-19 00:55:02 +02:00
parent 17f106f70d
commit d81d741fee
2 changed files with 4 additions and 4 deletions

View file

@ -98,7 +98,7 @@
android:id="@+id/text_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"/>
android:inputType="textCapSentences"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout
@ -117,7 +117,7 @@
android:maxLines="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"/>
android:inputType="textCapSentences"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
@ -171,7 +171,7 @@
android:id="@+id/text_note"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text|textMultiLine"/>
android:inputType="text|textMultiLine|textCapSentences"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<LinearLayout

View file

@ -14,6 +14,6 @@
android:id="@+id/text_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"/>
android:inputType="textCapSentences"/>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>