Merge pull request #1499 from michaelschattgen/fix/text-field-caps

Fix capitalization of multiple text fields
This commit is contained in:
Alexander Bakker 2024-09-19 21:39:47 +02:00 committed by GitHub
commit 83689a4c59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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>