ignoring text suggestions on username inputs, to avoid the spell checker introducing word breaks

This commit is contained in:
Adam Brown 2022-06-09 14:06:49 +01:00
parent b78fb532ff
commit 825f14d919
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:imeOptions="actionNext"
android:inputType="text"
android:inputType="textNoSuggestions"
android:maxLines="1"
android:nextFocusForward="@id/loginPasswordInput" />

View File

@ -174,7 +174,7 @@
android:layout_height="match_parent"
android:imeOptions="actionNext"
android:nextFocusForward="@id/createAccountPasswordInput"
android:inputType="text"
android:inputType="textNoSuggestions"
android:maxLines="1" />
</com.google.android.material.textfield.TextInputLayout>