summaryrefslogtreecommitdiffhomepage
path: root/android/src/main/res/layout
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2019-06-20 18:33:38 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2019-06-24 11:35:20 +0000
commitdf500caa3de45f40b4ef6e227a3d9565445b31c8 (patch)
tree45d9ac63d1e93e03a6855c3dc495b33401e7e11d /android/src/main/res/layout
parent1a8467bb0ef645f15988d6b0d9ae14369151ab8e (diff)
downloadmullvadvpn-df500caa3de45f40b4ef6e227a3d9565445b31c8.tar.xz
mullvadvpn-df500caa3de45f40b4ef6e227a3d9565445b31c8.zip
Add form inputs to "Report a problem" screen
Diffstat (limited to 'android/src/main/res/layout')
-rw-r--r--android/src/main/res/layout/problem_report.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/android/src/main/res/layout/problem_report.xml b/android/src/main/res/layout/problem_report.xml
index 8dae3f3b11..be7fba0b13 100644
--- a/android/src/main/res/layout/problem_report.xml
+++ b/android/src/main/res/layout/problem_report.xml
@@ -59,5 +59,25 @@
android:textSize="13sp"
android:text="@string/problem_report_description"
/>
+ <EditText android:id="@+id/user_email"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="0"
+ android:layout_marginBottom="12dp"
+ android:layout_marginHorizontal="22dp"
+ android:singleLine="true"
+ android:hint="@string/user_email_hint"
+ style="@style/InputText"
+ />
+ <EditText android:id="@+id/user_message"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:layout_marginHorizontal="22dp"
+ android:singleLine="false"
+ android:hint="@string/user_message_hint"
+ android:gravity="top"
+ style="@style/InputText"
+ />
</LinearLayout>
</LinearLayout>