mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
* allow multiple lines for description/caption * make caption multiline too --------- Co-authored-by: Nicolas Raoul <nicolas.raoul@gmail.com>
141 lines
5.4 KiB
XML
141 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:layout_marginVertical="8dp"
|
|
app:elevation="6dp">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/cl_parent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginVertical="20dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_remove"
|
|
android:layout_width="24dp"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@string/remove"
|
|
android:visibility="visible"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_remove" />
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_add"
|
|
android:layout_width="24dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="10dp"
|
|
android:contentDescription="@string/remove"
|
|
android:visibility="visible"
|
|
app:layout_constraintEnd_toStartOf="@+id/btn_remove"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_add" />
|
|
|
|
<TextView
|
|
android:id="@+id/description_languages"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:drawableRight="@drawable/ic_baseline_arrow_drop_down_24"
|
|
android:padding="@dimen/dimen_2"
|
|
android:textSize="18sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/caption_item_edit_text_input_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/description_languages">
|
|
|
|
<fr.free.nrw.commons.ui.PasteSensitiveTextInputEditText
|
|
android:id="@+id/caption_item_edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minLines="1"
|
|
android:maxLines="10"
|
|
android:hint="@string/share_caption_hint"
|
|
android:imeOptions="actionNext|flagNoExtractUi"
|
|
android:inputType="textMultiLine"
|
|
app:allowFormatting="false" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_write_better_caption"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="2dp"
|
|
android:background="@drawable/clicked_linearlayout_background"
|
|
android:clickable="true"
|
|
android:gravity="center_vertical"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/caption_item_edit_text_input_layout">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/learn_how_to_write_a_useful_caption"
|
|
android:textSize="12sp" />
|
|
|
|
<ImageView
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp"
|
|
android:layout_marginStart="6dp"
|
|
app:srcCompat="@drawable/ic_open" />
|
|
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/description_item_edit_text_input_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/ll_write_better_caption">
|
|
|
|
<fr.free.nrw.commons.ui.PasteSensitiveTextInputEditText
|
|
android:id="@+id/description_item_edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minLines="1"
|
|
android:maxLines="10"
|
|
android:hint="@string/share_description_hint"
|
|
android:imeOptions="actionNext|flagNoExtractUi"
|
|
android:inputType="textMultiLine"
|
|
app:allowFormatting="false" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_write_better_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="2dp"
|
|
android:background="@drawable/clicked_linearlayout_background"
|
|
android:clickable="true"
|
|
android:gravity="center_vertical"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/description_item_edit_text_input_layout">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/learn_how_to_write_a_useful_description"
|
|
android:textSize="12sp" />
|
|
|
|
<ImageView
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp"
|
|
android:layout_marginStart="6dp"
|
|
app:srcCompat="@drawable/ic_open" />
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.cardview.widget.CardView>
|