Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21193 rajender 1
<?xml version="1.0" encoding="utf-8"?>
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    xmlns:tools="http://schemas.android.com/tools"
4
    android:layout_width="match_parent"
5
    android:layout_height="match_parent"
6
    android:background="@color/green_tobe_used"
7
    tools:context="com.saholic.profittill.main.BasicInformation">
8
 
9
 
10
    <LinearLayout android:layout_width="match_parent"
11
        android:background="@color/green_tobe_used"
12
        android:layout_height="match_parent"
13
        android:layout_gravity="center"
14
        android:gravity="center"
15
        android:padding="10dp"
16
        android:orientation="vertical">
17
 
18
    <ScrollView
19
        android:layout_width="match_parent"
20
        android:background="@color/green_tobe_used"
21
        xmlns:app="http://schemas.android.com/apk/res-auto"
22
        android:layout_height="fill_parent">
23
 
24
 
25
        <RelativeLayout android:layout_width="match_parent"
26
            android:layout_height="550dp"
27
            android:background="@drawable/roundshape"
28
            android:padding="10dp"
29
            android:gravity="center"
30
            android:layout_alignParentBottom="true"
31
            android:layout_centerHorizontal="true">
32
 
33
            <TextView
34
                android:layout_width="match_parent"
35
                android:layout_height="wrap_content"
36
                android:text="Retailer Information"
37
                android:id="@+id/info"
38
                android:textColor="@color/grey_black"
39
                android:textStyle="bold"
40
                android:gravity="center"
41
                android:textSize="20dp"/>
42
 
43
 
44
            <android.support.design.widget.TextInputLayout
45
                android:id="@+id/cityinput"
46
                android:layout_width="match_parent"
47
                android:layout_below="@id/info"
48
                android:layout_marginTop="5dp"
49
                android:layout_height="wrap_content">
50
                <EditText android:layout_width="match_parent"
51
                    android:layout_height="wrap_content"
52
                    android:id="@+id/city"
53
                    android:gravity="left"
54
                    android:ems="10"
55
                    android:textSize="13dp"
56
                    android:maxLines="1"
57
                    android:inputType="text"
58
                    android:hint="City" />
59
            </android.support.design.widget.TextInputLayout>
60
 
61
            <android.support.design.widget.TextInputLayout
62
                android:id="@+id/Pincodeinput"
63
                android:layout_width="match_parent"
64
                android:layout_below="@+id/cityinput"
65
                android:layout_height="wrap_content">
66
 
67
                <EditText android:layout_width="match_parent"
68
                    android:layout_height="wrap_content"
69
                    android:id="@+id/Pincode"
70
                    android:gravity="left"
71
                    android:maxLines="1"
72
                    android:textSize="13dp"
73
                    android:ems="10"
74
                    android:inputType="number"
75
                    android:hint="Pincode"
76
                    android:maxLength="6" />
77
 
78
            </android.support.design.widget.TextInputLayout>
79
 
80
 
81
            <android.support.design.widget.TextInputLayout
82
                android:id="@+id/Phonenumberinput"
83
                android:layout_width="match_parent"
84
                android:layout_below="@+id/Pincodeinput"
85
                android:layout_height="wrap_content">
86
 
87
                <EditText android:layout_width="match_parent"
88
                    android:layout_height="wrap_content"
89
                    android:id="@+id/PhoneNumber"
90
                    android:gravity="left"
91
                    android:textSize="13dp"
92
                    android:maxLines="1"
93
                    android:ems="10"
94
                    android:inputType="number"
95
                    android:hint="Mobile "
96
                    android:maxLength="10" />
97
 
98
            </android.support.design.widget.TextInputLayout>
99
 
100
            <Button
101
                android:layout_width="200dp"
102
                android:id="@+id/infosend"
103
                android:text="Next"
104
                android:textColor="@color/White"
105
                android:background="@drawable/round"
106
                android:layout_height="35dp"
107
                android:layout_marginTop="59dp"
108
                android:layout_below="@+id/Phonenumberinput"
109
                android:layout_centerHorizontal="true" />
110
 
111
            <RelativeLayout
112
                android:layout_width="match_parent"
113
                android:layout_height="wrap_content"
114
                android:layout_marginTop="60dp"
115
                android:layout_below="@id/infosend">
116
 
117
 
118
 
119
            <TextView
120
                android:layout_width="match_parent"
121
                android:layout_height="wrap_content"
122
                android:text=" "/>
123
 
124
            </RelativeLayout>
125
 
126
        </RelativeLayout>
127
    </ScrollView>
128
 
129
    </LinearLayout>
130
 
131
 
132
</RelativeLayout>