use the new edittext at some other dialogs too

This commit is contained in:
tibbi 2021-03-02 23:01:47 +01:00
parent 2a0ad02959
commit efff57184b
3 changed files with 28 additions and 18 deletions

View File

@ -1,11 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog_holder" android:id="@+id/dialog_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:paddingTop="@dimen/activity_margin"> android:paddingTop="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextInputLayout
android:id="@+id/custom_label_hint"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/title">
<com.simplemobiletools.commons.views.MyEditText <com.simplemobiletools.commons.views.MyEditText
android:id="@+id/custom_label_edittext" android:id="@+id/custom_label_edittext"
android:layout_width="match_parent" android:layout_width="match_parent"
@ -15,5 +20,5 @@
android:inputType="textCapSentences" android:inputType="textCapSentences"
android:textCursorDrawable="@null" android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size" /> android:textSize="@dimen/normal_text_size" />
</com.simplemobiletools.commons.views.MyTextInputLayout>
</RelativeLayout> </RelativeLayout>

View File

@ -32,7 +32,7 @@
android:paddingBottom="@dimen/small_margin" /> android:paddingBottom="@dimen/small_margin" />
<com.simplemobiletools.commons.views.MyTextInputLayout <com.simplemobiletools.commons.views.MyTextInputLayout
android:id="@+id/new_playlist_hint" android:id="@+id/export_contacts_filename_hint"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:hint="@string/filename_without_vcf"> android:hint="@string/filename_without_vcf">

View File

@ -1,12 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rename_group_holder" android:id="@+id/rename_group_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:orientation="vertical"
android:padding="@dimen/activity_margin"> android:padding="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextInputLayout
android:id="@+id/rename_group_hint"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/title">
<com.simplemobiletools.commons.views.MyEditText <com.simplemobiletools.commons.views.MyEditText
android:id="@+id/rename_group_title" android:id="@+id/rename_group_title"
android:layout_width="match_parent" android:layout_width="match_parent"
@ -15,5 +20,5 @@
android:singleLine="true" android:singleLine="true"
android:textCursorDrawable="@null" android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size" /> android:textSize="@dimen/normal_text_size" />
</com.simplemobiletools.commons.views.MyTextInputLayout>
</LinearLayout> </LinearLayout>