[android] Remove mentioning email from OSM login in Google Play flavor

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-03-09 11:28:19 +01:00 committed by Roman Tsisyk
parent 9971b7bb8b
commit aecb99ff37
3 changed files with 14 additions and 5 deletions

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.textfield.TextInputEditText
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/osm_username"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:hint="@string/username" />

View file

@ -65,11 +65,7 @@
android:layout_marginTop="@dimen/margin_half"
android:textColorHint="?android:textColorSecondary"
app:endIconMode="custom">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/osm_username"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:autofillHints="emailAddress"
android:hint="@string/email_or_username" />
<include layout="@layout/osm_login_text_input"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
style="@style/MwmWidget.Editor.CustomTextInput"

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.textfield.TextInputEditText
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/osm_username"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:autofillHints="emailAddress"
android:hint="@string/email_or_username" />