summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_merchant_history.xml
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-20 22:56:16 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-20 22:58:10 +0200
commiteb9594079589a0126c3fb5f9a2f6ecd56950eebc (patch)
tree2ab7544f0230c78c1df15ac9e75ed5d47ac87bbf /app/src/main/res/layout/fragment_merchant_history.xml
parente63f231bc8583db065213a07019223f7c122c9fd (diff)
downloadmerchant-terminal-android-eb9594079589a0126c3fb5f9a2f6ecd56950eebc.tar.gz
merchant-terminal-android-eb9594079589a0126c3fb5f9a2f6ecd56950eebc.tar.bz2
merchant-terminal-android-eb9594079589a0126c3fb5f9a2f6ecd56950eebc.zip
prototype of payment request flow
Diffstat (limited to 'app/src/main/res/layout/fragment_merchant_history.xml')
-rw-r--r--app/src/main/res/layout/fragment_merchant_history.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_merchant_history.xml b/app/src/main/res/layout/fragment_merchant_history.xml
new file mode 100644
index 0000000..92abdf7
--- /dev/null
+++ b/app/src/main/res/layout/fragment_merchant_history.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.core.widget.NestedScrollView
+ 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">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <View
+ android:id="@+id/header"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"/>
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/list_history"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:scrollbars="vertical"
+ android:layout_marginTop="47dp" android:layout_marginEnd="75dp"
+ android:layout_marginBottom="17dp"/>
+
+ <Button
+ android:text="Button"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" android:id="@+id/button2"/>
+ </LinearLayout>
+</androidx.core.widget.NestedScrollView>