summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_already_paid.xml
blob: f2ff7e79dd6b223e4498cf0689a584bbd2f3d3f0 (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=".payment.PaymentSuccessfulFragment">


    <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>