summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_payment_success.xml
blob: 8db64dfdb766bc039ab080daff38b3e010e81d0b (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
<?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="Payment Received"
                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>