Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14792 manas 1
<!--
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
4
    android:layout_height="match_parent"
5
    tools:context="com.saholic.profittill.main.MobileNumber">
6
 
7
    <RelativeLayout
8
        android:background="@color/green_tobe_used"
9
        android:layout_width="match_parent"
10
        android:layout_height="match_parent">
11
 
12
        <ImageView
13
            android:src="@drawable/pmlogo"
14
            android:layout_centerHorizontal="true"
15
            android:layout_width="wrap_content"
16
            android:layout_height="wrap_content" />
17
    <TextView
18
        android:text="Verify Your Number"
19
        android:layout_width="wrap_content"
20
        android:gravity="center"
21
        android:textSize="20dp"
22
        android:textStyle="bold"
23
        android:layout_centerInParent="true"
24
        android:textColor="@color/Black"
25
        android:id="@+id/phoneNumberFirstTimeText"
26
        android:layout_height="wrap_content" />
27
        <EditText
28
            android:layout_marginTop="10dp"
29
            android:hint="Mobile Number"
30
            android:gravity="center"
31
            android:background="@color/White"
32
            android:editable="false"
33
            android:inputType="phone"
34
            android:maxLength="10"
35
            android:layout_centerHorizontal="true"
36
            android:layout_below="@id/phoneNumberFirstTimeText"
37
            android:id="@+id/phoneNumberFirstTime"
38
            android:layout_width="200dp"
39
            android:layout_height="40dp" />
40
 
41
 
42
        <Button
43
            android:background="@color/White"
44
            android:layout_width="wrap_content"
45
            android:text="Next >"
46
            android:id="@+id/phoneNumberFirstTimeButton"
47
            android:layout_height="40dp"
48
            android:layout_below="@+id/phoneNumberFirstTime"
49
            android:layout_centerInParent="true"
50
            android:layout_marginTop="10dp" />
51
 
52
        <EditText
53
            android:textSize="20dp"
54
            android:layout_width="wrap_content"
55
            android:text="Skip this Step >"
56
            android:id="@+id/skipMobileNumber"
57
            android:layout_height="40dp"
58
            android:editable="false"
59
            android:layout_below="@+id/phoneNumberFirstTimeButton"
60
            android:layout_alignParentRight="true"
61
            android:layout_marginRight="30dp"
62
            android:layout_marginTop="30dp" />
63
 
64
        </RelativeLayout>
65
 
66
</RelativeLayout>
67
-->
68
<RelativeLayout
69
    xmlns:android="http://schemas.android.com/apk/res/android"
70
    xmlns:tools="http://schemas.android.com/tools"
71
    tools:context="com.saholic.profittill.main.MobileNumber"
72
    android:layout_width="match_parent"
73
    android:layout_height="match_parent">
74
    <ScrollView
75
        android:layout_width="match_parent"
76
        android:layout_height="200dp"
77
        android:id="@+id/mobileNumbersc1"
78
        android:background="@color/green_tobe_used">
79
 
80
        <ImageView
81
            android:src="@drawable/pmlogo"
82
            android:id="@+id/mobileNumberLogo"
83
            android:layout_width="match_parent"
84
            android:layout_height="match_parent" />
85
 
86
    </ScrollView>
87
    <ScrollView
88
        android:layout_width="match_parent"
89
        android:layout_height="match_parent"
90
        android:id="@+id/mobileNumbersc2"
91
        android:layout_below="@+id/mobileNumbersc1"
92
        android:background="@color/White">
93
 
94
        <RelativeLayout
95
            android:layout_width="match_parent"
96
            android:layout_height="match_parent">
97
 
98
            <EditText
99
                android:hint="Enter your Mobile Number"
100
                android:layout_width="250dp"
101
                android:gravity="center"
102
                android:textColorHint="@color/green_tobe_used"
103
                android:layout_marginTop="10dp"
104
                android:inputType="phone"
105
                android:id="@+id/phoneNumberFirstTime"
106
                android:background="@drawable/mobilenumber"
107
                android:layout_centerHorizontal="true"
108
                android:layout_height="wrap_content"
109
                />
110
            <TextView
111
                android:layout_below="@+id/phoneNumberFirstTime"
112
                android:layout_marginTop="7dp"
113
                android:textSize="15dp"
114
                android:text="Enter a phone number you use to get the latest updates on your earned cashbacks as soon as you get them."
115
                android:layout_centerHorizontal="true"
116
                android:layout_width="250dp"
117
                android:id="@+id/mobilenumberText"
118
                android:layout_height="match_parent" />
119
 
120
            <Button
121
                android:text="Next >"
122
                android:layout_below="@+id/mobilenumberText"
123
                android:layout_marginTop="30dp"
124
                android:background="@color/green_tobe_used"
125
                android:textColor="@color/White"
126
                android:layout_centerHorizontal="true"
127
                android:id="@+id/phoneNumberFirstTimeButton"
128
                android:layout_width="wrap_content"
129
                android:layout_height="40dp" />
130
 
131
            <TextView
132
                android:text="Skip for Now >"
133
                android:background="@color/White"
134
                android:textColor="@color/green_tobe_used"
135
                android:layout_below="@+id/phoneNumberFirstTimeButton"
136
                android:layout_width="100dp"
137
                android:layout_height="40dp"
138
                android:id="@+id/skipMobileNumber"
139
                android:layout_marginTop="30dp"
140
                android:layout_alignParentBottom="true"
141
                android:layout_alignRight="@+id/mobilenumberText"
142
                android:layout_alignEnd="@+id/mobilenumberText" />
143
 
144
        </RelativeLayout>
145
    </ScrollView>
146
</RelativeLayout>