1
0
mirror of https://github.com/etesync/android synced 2025-01-23 14:10:54 +00:00

Add autofill hints to the login screen.

This commit is contained in:
Tom Hacohen 2019-11-04 10:08:49 +02:00
parent ee6f731c60
commit 8abbbd122f

View File

@ -40,6 +40,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/login_email_address"
android:autofillHints="emailAddress"
android:inputType="textEmailAddress"/>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/url_password"
@ -50,6 +51,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="monospace"
android:autofillHints="password"
android:inputType="textPassword"
android:hint="@string/login_password"/>
</com.google.android.material.textfield.TextInputLayout>