summaryrefslogtreecommitdiffhomepage
path: root/android/src/main/res/layout
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2019-06-21 14:43:42 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2019-06-24 14:33:00 +0000
commit5ea3bf22fbf36cc6dedfba842f81b5afb5c1c24a (patch)
treec1c3e959d5539b6dc602425f9091eb5dee660beb /android/src/main/res/layout
parent70779ba7aa7aa41a24558f99698d8b106a4ec457 (diff)
downloadmullvadvpn-5ea3bf22fbf36cc6dedfba842f81b5afb5c1c24a.tar.xz
mullvadvpn-5ea3bf22fbf36cc6dedfba842f81b5afb5c1c24a.zip
Create Send without e-mail confirmation dialog
Diffstat (limited to 'android/src/main/res/layout')
-rw-r--r--android/src/main/res/layout/confirm_no_email.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/android/src/main/res/layout/confirm_no_email.xml b/android/src/main/res/layout/confirm_no_email.xml
new file mode 100644
index 0000000000..dc6561e530
--- /dev/null
+++ b/android/src/main/res/layout/confirm_no_email.xml
@@ -0,0 +1,29 @@
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:padding="16dp"
+ android:background="@drawable/dialog_background"
+ android:orientation="vertical"
+ android:gravity="left"
+ android:elevation="2dp"
+ >
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="0"
+ android:layout_marginBottom="12dp"
+ android:textColor="@color/white80"
+ android:textSize="16sp"
+ android:text="@string/confirm_no_email"
+ />
+ <Button android:id="@+id/send_button"
+ android:text="@string/send_anyway"
+ style="@style/GreenButton"
+ />
+ <Button android:id="@+id/back_button"
+ android:layout_marginTop="16dp"
+ android:text="@string/back"
+ style="@style/RedButton"
+ />
+</LinearLayout>