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,6 +33,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/current_password"
android:imeOptions="flagNoPersonalizedLearning"
android:importantForAutofill="no"
android:inputType="textPassword"
android:maxLines="1" />
@@ -57,6 +58,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/choose_new_password"
android:imeOptions="flagNoPersonalizedLearning"
android:importantForAutofill="no"
android:inputType="textPassword"
android:maxLines="1" />
@@ -78,7 +80,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/confirm_new_password"
android:imeOptions="actionDone"
android:imeOptions="flagNoPersonalizedLearning|actionDone"
android:importantForAutofill="no"
android:inputType="textPassword"
android:maxLines="1" />