Subversion Repositories SmartDukaan

Rev

Rev 22837 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22837 rajender 1
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
3
    android:layout_height="match_parent"
4
    tools:context="com.saholic.profittill.main.HowItWorks">
5
 
6
 
7
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8
        xmlns:tools="http://schemas.android.com/tools"
9
        android:layout_width="match_parent"
10
        android:layout_height="match_parent"
11
        android:background="@color/White"
12
        android:orientation="vertical" >
13
 
14
        <LinearLayout
15
            android:layout_height="match_parent"
16
            android:layout_width="match_parent"
17
            android:layout_weight="0.15">
18
            <android.support.v4.view.ViewPager
19
                android:id="@+id/pager"
20
                android:layout_width="fill_parent"
21
                android:layout_height="fill_parent"/>
22
        </LinearLayout>
23
 
24
        <RelativeLayout
25
            android:layout_height="match_parent"
26
            android:layout_width="match_parent"
27
            android:background="@color/White"
28
            android:layout_weight="1" >
29
 
30
            <com.viewpagerindicator.CirclePageIndicator
31
                android:id="@+id/indicator"
32
                android:layout_marginTop="5dp"
33
                android:layout_width="fill_parent"
34
                android:layout_height="15dp" />
35
            <!--
36
                        <TextView
37
                            android:id="@+id/skipHowItWorks"
38
                            android:text="Skip >"
39
                            android:textSize="20dp"
40
                            android:layout_marginRight="40dp"
41
                            android:layout_alignParentRight="true"
42
                            android:background="@color/green_tobe_used"
43
                            android:textColor="@color/White"
44
                            android:layout_width="wrap_content"
45
                            android:layout_height="35dp" />
46
            -->
47
 
48
 
49
 
50
 
51
 
52
        </RelativeLayout>
53
 
54
 
55
 
56
 
57
        <RelativeLayout
58
            android:layout_height="wrap_content"
59
            android:layout_width="wrap_content"
60
            android:layout_gravity="center"
61
            android:background="@color/White"
62
            android:layout_margin="10dp">
63
            <Button
64
                android:id="@+id/skipHowItWorks"
65
                android:text="Next"
66
                android:textSize="20dp"
24857 tejbeer 67
                android:background="@color/app_red"
22837 rajender 68
                android:textColor="@color/White"
69
                android:layout_centerHorizontal="true"
70
                android:gravity="center"
71
                android:layout_centerInParent="true"
72
                android:layout_width="wrap_content"
73
                android:layout_height="35dp"
74
                />
75
 
76
 
77
            <Button
78
                android:id="@+id/howitwokstodeals"
79
                android:text="Start"
80
                android:visibility="gone"
81
                android:textSize="15dp"
24857 tejbeer 82
                android:background="@color/app_red"
22837 rajender 83
                android:textColor="@color/White"
84
                android:layout_centerHorizontal="true"
85
                android:gravity="center"
86
                android:padding="5dp"
87
                android:layout_centerInParent="true"
88
                android:layout_width="wrap_content"
89
                android:layout_height="35dp" />
90
 
91
        </RelativeLayout>
92
    </LinearLayout>
93
 
94
</FrameLayout>