I am unable to understand if there is any difference between
android:hint
and
android:autofillHints
in EditText
I have the following code -
android:hint="@string/enter_name"
android:autofillHints="@string/enter_name"
What is the difference here in the two lines?

