summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_withdraw_successful.xml
blob: 717ca20c589de0ebd316a6a8e7a8d6896fd0a356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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>