Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21478 rajender 1
<ScrollView
2
    android:layout_height="match_parent"
3
    xmlns:android="http://schemas.android.com/apk/res/android"
4
    android:background="@color/green_tobe_used"
5
    android:layout_width="match_parent">
6
    <RelativeLayout
7
        android:layout_gravity="center"
8
        android:layout_width="match_parent"
9
        android:layout_height="wrap_content">
10
 
11
 
12
        <ImageView
13
            android:id="@+id/logo"
14
            android:src="@drawable/logo3"
15
            android:layout_width="wrap_content"
16
            android:layout_height="wrap_content"
17
            android:layout_centerHorizontal="true"
18
        />
19
 
20
        <Button
21
            android:id="@+id/deals"
22
            android:layout_marginTop="40dp"
23
            android:layout_below="@+id/logo"
24
            android:text="Show me Deals"
25
            android:layout_centerHorizontal="true"
26
            android:layout_width="180dp"
27
            android:layout_height="wrap_content" />
28
 
29
        <Button
30
            android:id="@+id/howitworks"
31
            android:layout_marginTop="10dp"
32
            android:layout_below="@+id/deals"
33
            android:text="How it Works"
34
            android:layout_centerHorizontal="true"
35
            android:layout_width="180dp"
36
            android:layout_height="wrap_content" />
37
 
38
</RelativeLayout>
39
    </ScrollView>