Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14792 manas 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.HowItWorksFragment">
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:orientation="vertical" >
12
 
13
        <LinearLayout
14
            android:layout_height="match_parent"
15
            android:layout_width="match_parent"
16
            android:background="@color/White"
17
            android:layout_weight="0.12" >
18
            <android.support.v4.view.ViewPager
19
                android:id="@+id/pager"
20
                android:layout_width="match_parent"
21
                android:layout_height="match_parent"
22
                />
23
        </LinearLayout>
24
        <RelativeLayout
25
            android:layout_height="match_parent"
26
            android:layout_width="match_parent"
27
            android:background="@color/green_tobe_used"
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
            <TextView
36
                android:id="@+id/skipHowItWorks"
37
                android:text="Skip >"
38
                android:textSize="20dp"
39
                android:layout_marginRight="40dp"
40
                android:layout_alignParentRight="true"
41
                android:background="@color/green_tobe_used"
42
                android:textColor="@color/White"
43
                android:layout_width="wrap_content"
44
                android:layout_height="35dp" />
45
 
46
            <Button
47
                android:id="@+id/howitwokstodeals"
48
                android:text="Start Now >"
49
                android:textSize="15dp"
50
                android:layout_marginRight="10dp"
51
                android:layout_alignParentRight="true"
52
                android:background="@color/White"
53
                android:visibility="gone"
54
                android:textColor="@color/green_tobe_used"
55
                android:layout_width="wrap_content"
56
                android:layout_height="35dp" />
57
        </RelativeLayout>
58
    </LinearLayout>
59
</FrameLayout>