apps-android-commons/app/src/main/res/layout/dialog_feedback.xml
Kaartic Sivaraam bb4cfe421a
feedback: add info about where the feedback gets posted (#5748)
* feedback: add info about where the feedback gets posted

Fixes #5747

* feedback: avoid underscore in the link's alternative text

* wording

---------

Co-authored-by: Nicolas Raoul <nicolas.raoul@gmail.com>
2024-06-09 21:08:38 +02:00

146 lines
No EOL
4.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_margin="@dimen/dimen_6"
android:padding="@dimen/tiny_gap"
android:textSize="24sp"
android:textColor="?android:attr/textColorPrimary"
android:text="@string/navigation_item_feedback"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/feedback_item_edit_text_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen_6"
android:layout_marginEnd="@dimen/dimen_6"
>
<fr.free.nrw.commons.ui.PasteSensitiveTextInputEditText
android:id="@+id/feedback_item_edit_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/your_feedback"
android:imeOptions="actionNext|flagNoExtractUi"
android:lines="4"
android:inputType="text|textMultiLine"
app:allowFormatting="false" />
</com.google.android.material.textfield.TextInputLayout>
<TextView
android:layout_margin="@dimen/dimen_6"
android:padding="4dp"
android:textSize="21sp"
android:textColor="?android:attr/textColorPrimary"
android:text="@string/select_feedback_data_choice"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<CheckBox
android:id="@+id/api_level_checkbox"
android:text="@string/api_level"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="?android:attr/textCheckMark"
android:checked="true"
android:gravity="center_vertical"
android:padding="@dimen/tiny_gap"
android:layout_margin="@dimen/dimen_6"
/>
<CheckBox
android:id="@+id/android_version_checkbox"
android:text="@string/android_version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="?android:attr/textCheckMark"
android:checked="true"
android:gravity="center_vertical"
android:padding="@dimen/tiny_gap"
android:layout_margin="@dimen/dimen_6"
/>
<CheckBox
android:id="@+id/device_manufacturer_checkbox"
android:text="@string/device_manufacturer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="?android:attr/textCheckMark"
android:checked="true"
android:gravity="center_vertical"
android:padding="@dimen/tiny_gap"
android:layout_margin="@dimen/dimen_6"
/>
<CheckBox
android:id="@+id/device_model_checkbox"
android:text="@string/device_model"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="?android:attr/textCheckMark"
android:checked="true"
android:gravity="center_vertical"
android:padding="@dimen/tiny_gap"
android:layout_margin="@dimen/dimen_6"
/>
<CheckBox
android:id="@+id/device_name_checkbox"
android:text="@string/device_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="?android:attr/textCheckMark"
android:checked="true"
android:gravity="center_vertical"
android:padding="@dimen/tiny_gap"
android:layout_margin="@dimen/dimen_6"
/>
<CheckBox
android:id="@+id/network_type_checkbox"
android:text="@string/network_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="?android:attr/textCheckMark"
android:checked="true"
android:gravity="center_vertical"
android:padding="@dimen/tiny_gap"
android:layout_margin="@dimen/dimen_6"
/>
<TextView
android:id="@+id/feedback_destination"
android:layout_margin="@dimen/dimen_6"
android:padding="4dp"
android:textSize="14sp"
android:textColor="?android:attr/textColorPrimary"
android:text="@string/feedback_destination_note"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/btn_submit_feedback"
android:textColor="@color/white"
android:layout_marginBottom="@dimen/dimen_10"
android:gravity="center"
android:layout_gravity="center"
android:text="@string/submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>