summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_already_paid.xml
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-22 23:37:22 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-22 23:37:22 +0200
commitb9fd051a1bf453e923ddbbf86cf8602d154278e1 (patch)
tree2dfa438cd76fc4fc41079359a359f2325ac129dd /app/src/main/res/layout/fragment_already_paid.xml
parentdefff18c7c8dbfc87fbc282da005ff25cda1159f (diff)
downloadwallet-android-b9fd051a1bf453e923ddbbf86cf8602d154278e1.tar.gz
wallet-android-b9fd051a1bf453e923ddbbf86cf8602d154278e1.tar.bz2
wallet-android-b9fd051a1bf453e923ddbbf86cf8602d154278e1.zip
UX improvements / prototype support for NFC tunneling
Diffstat (limited to 'app/src/main/res/layout/fragment_already_paid.xml')
-rw-r--r--app/src/main/res/layout/fragment_already_paid.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_already_paid.xml b/app/src/main/res/layout/fragment_already_paid.xml
new file mode 100644
index 0000000..69c949e
--- /dev/null
+++ b/app/src/main/res/layout/fragment_already_paid.xml
@@ -0,0 +1,38 @@
+<?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="15dp"
+ tools:context=".PaymentSuccessful">
+
+
+ <LinearLayout
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <Space android:layout_width="match_parent" android:layout_height="0dp"
+ android:layout_weight="1"/>
+
+ <TextView
+ android:layout_gravity="center"
+ android:layout_width="match_parent"
+ android:textAlignment="center"
+ android:layout_height="50dp"
+ android:text="You've already paid for this order."
+ android:autoSizeTextType="uniform"
+ android:textColor="@android:color/holo_green_dark"/>
+
+
+ <Space android:layout_width="match_parent" android:layout_height="0dp"
+ android:layout_weight="1"/>
+ <Button
+ android:text="Go Back"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/button_success_back"/>
+
+ </LinearLayout>
+
+</FrameLayout> \ No newline at end of file