mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 21:33:53 +01:00
36 lines
No EOL
1.3 KiB
XML
36 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:weightSum="8">
|
|
|
|
<android.support.v7.widget.AppCompatSpinner
|
|
android:id="@+id/spinner_description_languages"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:minWidth="1dp"
|
|
android:padding="0dp"
|
|
android:spinnerMode="dialog" />
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_width="217dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="8">
|
|
|
|
<fr.free.nrw.commons.ui.widget.CustomEditText
|
|
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:inputType="textMultiLine" />
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
|
|
</LinearLayout> |