summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_withdraw_successful.xml
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-09-01 18:33:03 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-09-01 18:33:03 +0200
commit6f963cdfa0e918dbe35c99dafdb648dfa0586d7b (patch)
tree83ba25c8fa6d7f5eca46f38ba80e5040090436e4 /app/src/main/res/layout/fragment_withdraw_successful.xml
parentb9fd051a1bf453e923ddbbf86cf8602d154278e1 (diff)
downloadwallet-android-6f963cdfa0e918dbe35c99dafdb648dfa0586d7b.tar.gz
wallet-android-6f963cdfa0e918dbe35c99dafdb648dfa0586d7b.tar.bz2
wallet-android-6f963cdfa0e918dbe35c99dafdb648dfa0586d7b.zip
withdraw via QR code, various bug fixes
Diffstat (limited to 'app/src/main/res/layout/fragment_withdraw_successful.xml')
-rw-r--r--app/src/main/res/layout/fragment_withdraw_successful.xml53
1 files changed, 53 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_withdraw_successful.xml b/app/src/main/res/layout/fragment_withdraw_successful.xml
new file mode 100644
index 0000000..717ca20
--- /dev/null
+++ b/app/src/main/res/layout/fragment_withdraw_successful.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_margin="10dp"
+ tools:context=".WithdrawSuccessful">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <Space
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="50dp"
+ android:layout_gravity="center"
+ android:autoSizeTextType="uniform"
+ android:text="Withdrawal confirmed."
+ android:textAlignment="center"
+ android:textColor="@android:color/holo_green_dark" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="50dp"
+ android:layout_gravity="center"
+ android:text="Your bank will now ask you to approve a transfer to the selected change. After you've confirmed the transfer with your bank, the digital cash will show in this wallet."
+ android:textAlignment="center" />
+
+ <Space
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1" />
+
+
+ <Space
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1" />
+
+ <Button
+ android:id="@+id/button_success_back"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Go Back" />
+
+ </LinearLayout>
+</FrameLayout> \ No newline at end of file