| 21478 |
rajender |
1 |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
2 |
android:layout_width="fill_parent"
|
|
|
3 |
android:background="@drawable/border_verify"
|
|
|
4 |
android:layout_height="wrap_content" >
|
|
|
5 |
|
|
|
6 |
<RelativeLayout
|
|
|
7 |
android:layout_width="match_parent"
|
|
|
8 |
android:layout_height="match_parent">
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
<TextView
|
|
|
12 |
android:textColor="@color/green_tobe_used"
|
|
|
13 |
android:text="*"
|
|
|
14 |
android:textSize="20dp"
|
|
|
15 |
android:layout_width="wrap_content"
|
|
|
16 |
android:layout_marginRight="10dp"
|
|
|
17 |
android:id="@+id/star1"
|
|
|
18 |
android:layout_height="wrap_content"
|
|
|
19 |
android:layout_alignTop="@+id/charges"
|
|
|
20 |
android:layout_alignLeft="@+id/charges"
|
|
|
21 |
android:layout_marginLeft="-15dp"
|
|
|
22 |
android:layout_alignStart="@+id/charges" />
|
|
|
23 |
|
|
|
24 |
<TextView
|
|
|
25 |
android:textColor="@color/green_tobe_used"
|
|
|
26 |
android:text="Your call is FREE"
|
|
|
27 |
android:layout_marginLeft="30dp"
|
|
|
28 |
android:textSize="20dp"
|
|
|
29 |
android:layout_marginRight="10dp"
|
|
|
30 |
android:layout_width="wrap_content"
|
|
|
31 |
android:id="@+id/charges"
|
|
|
32 |
android:layout_marginTop="20dp"
|
|
|
33 |
android:layout_height="wrap_content" />
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
<TextView
|
|
|
37 |
android:textColor="@color/green_tobe_used"
|
|
|
38 |
android:text="*"
|
|
|
39 |
android:layout_marginLeft="-15dp"
|
|
|
40 |
android:textSize="20dp"
|
|
|
41 |
android:layout_width="wrap_content"
|
|
|
42 |
android:layout_marginRight="10dp"
|
|
|
43 |
android:id="@+id/star2"
|
|
|
44 |
android:layout_height="wrap_content"
|
|
|
45 |
android:layout_alignTop="@+id/complete"
|
|
|
46 |
android:layout_alignLeft="@+id/complete"
|
|
|
47 |
android:layout_alignStart="@+id/complete" />
|
|
|
48 |
<TextView
|
|
|
49 |
android:layout_marginLeft="30dp"
|
|
|
50 |
android:text="Don't cut it. It will cut automatically"
|
|
|
51 |
android:textSize="20dp"
|
|
|
52 |
android:layout_width="wrap_content"
|
|
|
53 |
android:layout_below="@id/charges"
|
|
|
54 |
android:id="@+id/complete"
|
|
|
55 |
android:layout_marginRight="10dp"
|
|
|
56 |
android:textColor="@color/green_tobe_used"
|
|
|
57 |
android:layout_marginTop="10dp"
|
|
|
58 |
android:layout_height="wrap_content" />
|
|
|
59 |
<!-- android:text="* If you have dual SIMs, please ensure that the number entered is same as the one from which you are calling/are able to receive calls.(You can update your phone number in 'MyProfile'.)"-->
|
|
|
60 |
|
|
|
61 |
<TextView
|
|
|
62 |
android:textColor="@color/green_tobe_used"
|
|
|
63 |
android:text="*"
|
|
|
64 |
android:layout_marginLeft="-15dp"
|
|
|
65 |
android:textSize="20dp"
|
|
|
66 |
android:layout_width="wrap_content"
|
|
|
67 |
android:layout_marginRight="10dp"
|
|
|
68 |
android:id="@+id/star3"
|
|
|
69 |
android:layout_height="wrap_content"
|
|
|
70 |
android:layout_alignTop="@+id/carrier"
|
|
|
71 |
android:layout_alignLeft="@+id/carrier"
|
|
|
72 |
android:layout_alignStart="@+id/carrier" />
|
|
|
73 |
<TextView
|
|
|
74 |
|
|
|
75 |
android:layout_marginLeft="30dp"
|
|
|
76 |
android:textColor="@color/green_tobe_used"
|
|
|
77 |
android:textSize="20dp"
|
|
|
78 |
android:layout_width="wrap_content"
|
|
|
79 |
android:layout_below="@id/complete"
|
|
|
80 |
android:layout_marginRight="10dp"
|
|
|
81 |
android:id="@+id/carrier"
|
|
|
82 |
android:layout_marginTop="10dp"
|
|
|
83 |
android:layout_height="wrap_content" />
|
|
|
84 |
|
|
|
85 |
<Button
|
|
|
86 |
android:text="Got It!"
|
|
|
87 |
android:layout_width="wrap_content"
|
|
|
88 |
android:id="@+id/gotIt"
|
|
|
89 |
android:background="@drawable/verify_button"
|
|
|
90 |
android:layout_marginTop="10dp"
|
|
|
91 |
android:layout_centerHorizontal="true"
|
|
|
92 |
android:layout_marginBottom="10dp"
|
|
|
93 |
android:layout_below="@+id/carrier"
|
|
|
94 |
android:layout_height="wrap_content" />
|
|
|
95 |
</RelativeLayout>
|
|
|
96 |
|
|
|
97 |
</FrameLayout>
|