Subversion Repositories SmartDukaan

Rev

Rev 15976 | Go to most recent revision | 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" android:paddingLeft="10dp"
5
    android:paddingRight="10dp"
6
    android:paddingTop="10dp"
7
    android:paddingBottom="10dp"
8
    android:background="@color/green_tobe_used"
9
    tools:context="com.saholic.profittill.main.MObileNumberVerificationActivity">
10
    <RelativeLayout
11
        android:background="@color/White"
12
        android:layout_width="match_parent"
13
        android:layout_height="match_parent">
14
        <TextView
15
            android:textSize="25dp"
16
            android:typeface="normal"
17
            android:layout_marginTop="50dp"
18
            android:id="@+id/mverifyText"
19
            android:gravity="center"
20
            android:text="Please give a missed call to verify your mobile number"
21
            android:layout_width="wrap_content"
22
            android:layout_height="wrap_content" />
23
 
24
        <ImageView
25
            android:src="@drawable/missedcall"
26
            android:id="@+id/mverifycallpitcure"
27
            android:layout_below="@id/mverifyText"
28
            android:layout_centerHorizontal="true"
29
            android:layout_marginTop="15dp"
30
            android:layout_width="wrap_content"
31
            android:layout_height="wrap_content" />
32
        <EditText
33
            android:layout_marginTop="10dp"
34
            android:hint="Mobile Number"
35
            android:gravity="center"
36
            android:editable="false"
37
            android:layout_centerHorizontal="true"
38
            android:layout_below="@id/mverifycallpitcure"
39
            android:id="@+id/mVerifynumber"
40
            android:layout_width="200dp"
41
            android:layout_height="40dp" />
42
 
43
        <Button
44
            android:text="Verify"
45
            android:visibility="gone"
46
            android:id="@+id/mverifyButton"
47
            android:layout_marginTop="10dp"
48
            android:background="@drawable/button"
49
            android:layout_centerHorizontal="true"
50
            android:layout_below="@+id/mVerifynumber"
51
            android:layout_width="150dp"
52
            android:layout_height="40dp" />
53
 
54
 
55
        <Button
56
            android:text="Skip"
57
 
58
            android:id="@+id/mverifySkip"
59
            android:layout_marginTop="10dp"
60
            android:layout_marginRight="20dp"
61
            android:layout_alignParentRight="true"
62
            android:layout_below="@+id/mverifyButton"
63
            android:layout_width="wrap_content"
64
            android:background="@drawable/button"
65
            android:layout_height="40dp" />
66
 
67
        <Button
68
            android:text="Call"
69
            android:visibility="gone"
70
            android:id="@+id/mverifyCall"
71
            android:layout_marginTop="10dp"
72
            android:layout_centerHorizontal="true"
73
            android:layout_below="@+id/mverifyButton"
74
            android:layout_width="wrap_content"
75
            android:background="@drawable/button"
76
            android:layout_height="40dp" />
77
 
78
 
79
        <TextView
80
            android:textColor="@color/green_tobe_used"
81
            android:id="@+id/countDown"
82
            android:textSize="20dp"
83
            android:layout_marginTop="20dp"
84
            android:layout_below="@+id/mverifyCall"
85
            android:layout_centerHorizontal="true"
86
            android:layout_width="wrap_content"
87
            android:layout_height="wrap_content" />
88
 
89
    </RelativeLayout>
90
</RelativeLayout>
91
-->
92
 
93
 
94
<RelativeLayout
95
    xmlns:android="http://schemas.android.com/apk/res/android"
96
    xmlns:tools="http://schemas.android.com/tools"
97
    tools:context="com.saholic.profittill.main.MobileVerificationFirstTime"
98
    android:layout_width="match_parent"
99
    android:layout_height="match_parent">
100
    <ScrollView
101
        android:layout_width="match_parent"
102
        android:layout_height="200dp"
103
        android:id="@+id/mverifycallsc1"
104
        android:background="@color/green_tobe_used"
105
        >
106
        <ImageView
107
            android:src="@drawable/pmlogo"
108
            android:id="@+id/mverifycallpitcure"
109
            android:layout_width="match_parent"
110
            android:layout_height="match_parent" />
111
 
112
    </ScrollView>
113
    <ScrollView
114
        android:layout_width="match_parent"
115
        android:layout_height="match_parent"
116
        android:id="@+id/mverifycallsc2"
117
        android:layout_below="@+id/mverifycallsc1"
118
        android:background="@color/White">
119
 
120
        <RelativeLayout
121
            android:layout_width="match_parent"
122
            android:layout_height="match_parent">
123
            <EditText
124
                android:editable="false"
125
                android:layout_width="250dp"
126
                android:gravity="center"
127
                android:layout_marginTop="10dp"
128
                android:id="@+id/mVerifynumber"
129
                android:background="@drawable/mobilenumber"
130
                android:layout_centerHorizontal="true"
131
                android:layout_height="wrap_content"/>
132
 
133
            <TextView
134
                android:layout_marginTop="7dp"
135
                android:textSize="15dp"
136
                android:text="We use your phone number to send you the latest updates on your earned cashbacks as you earn them."
137
                android:layout_centerHorizontal="true"
138
                android:layout_width="250dp"
139
                android:id="@+id/mverifycallText"
140
                android:layout_below="@+id/mVerifynumber"
141
                android:layout_height="match_parent" />
142
 
143
            <Button
144
                android:text="Give a missed call to Verify >"
145
                android:layout_below="@+id/mverifycallText"
146
                android:gravity="center"
147
 
148
                android:layout_marginTop="30dp"
149
                android:background="@color/green_tobe_used"
150
                android:textColor="@color/White"
151
                android:layout_centerHorizontal="true"
152
                android:id="@+id/mverifyCall"
153
                android:layout_width="250dp"
154
                android:layout_height="40dp" />
155
 
156
            <EditText
157
                android:editable="false"
158
                android:focusable="false"
159
                android:text="Skip for Now >"
160
                android:background="@color/White"
161
                android:textColor="@color/green_tobe_used"
162
                android:layout_below="@+id/countDown"
163
                android:layout_width="wrap_content"
164
                android:layout_height="40dp"
165
                android:layout_marginTop="20dp"
166
                android:layout_alignParentBottom="true"
167
                android:layout_alignRight="@+id/mverifyCall"
168
                android:id="@+id/mverifySkip"
169
                android:layout_alignEnd="@+id/mverifyCall" />
170
 
171
            <TextView
172
                android:textColor="@color/green_tobe_used"
173
                android:id="@+id/countDown"
174
                android:textSize="20dp"
175
 
176
                android:layout_marginTop="20dp"
177
                android:layout_below="@+id/mverifyCall"
178
                android:layout_centerHorizontal="true"
179
                android:layout_width="250dp"
180
                android:layout_height="wrap_content" />
181
        </RelativeLayout>
182
    </ScrollView>
183
</RelativeLayout>
184