Set "no personalized learning" flag for all text input.

This commit is contained in:
akwizgran
2023-03-09 10:52:46 +00:00
parent a09d88daa8
commit edd3310d03
13 changed files with 19 additions and 9 deletions

View File

@@ -33,7 +33,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/choose_password"
android:imeOptions="actionNext"
android:imeOptions="flagNoPersonalizedLearning|actionNext"
android:inputType="textPassword"
android:maxLines="1">
@@ -71,7 +71,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/confirm_password"
android:imeOptions="actionNext"
android:imeOptions="flagNoPersonalizedLearning|actionNext"
android:inputType="textPassword"
android:maxLines="1" />
</com.google.android.material.textfield.TextInputLayout>