Remove CustomEditText (#2640)

This commit is contained in:
Adam Jones 2019-03-19 14:42:01 +00:00 committed by neslihanturan
parent 3417d713d2
commit cfb06f3103
4 changed files with 43 additions and 235 deletions

View file

@ -19,16 +19,12 @@
android:layout_height="wrap_content"
android:layout_weight="8">
<fr.free.nrw.commons.ui.widget.CustomEditText
<EditText
android:id="@+id/description_item_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/share_description_hint"
android:imeOptions="flagNoExtractUi"
android:drawablePadding="4dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:drawableRight="@drawable/mapbox_info_icon_default"
android:imeOptions="actionNext|flagNoExtractUi"
android:inputType="textMultiLine" />
</com.google.android.material.textfield.TextInputLayout>

View file

@ -7,12 +7,12 @@
android:layout_height="wrap_content"
tools:showIn="@layout/activity_upload">
<fr.free.nrw.commons.ui.widget.CustomEditText
<EditText
android:id="@+id/description_item_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/share_title_hint"
android:imeOptions="actionNext"
android:inputType="textMultiLine"
android:imeOptions="actionNext|flagNoExtractUi"
android:inputType="text"
android:nextFocusForward="@+id/image_description" />
</com.google.android.material.textfield.TextInputLayout>