-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity_main.xml
77 lines (63 loc) · 2.45 KB
/
activity_main.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
tools:context="com.landingpage.MainActivity">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dp"
android:src="@drawable/flip"
/>
<TextView
android:id="@+id/textShop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/image"
android:layout_marginLeft="70dp"
android:fontFamily="sans-serif"
android:text="Shop Whatever You Want
At Home With This App "
android:textColor="#2979FF"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/google"
android:layout_marginBottom="25dp"
android:layout_marginLeft="70dp"
android:layout_marginTop="30dp"
android:text="Just Download It From"
android:textColor="#2979FF"
android:textSize="25sp"
android:textStyle="bold" />
<Button
android:id="@+id/google"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView"
android:layout_alignParentLeft="true"
android:layout_marginBottom="5dp"
android:layout_marginLeft="20dp"
android:background="@drawable/googleplaybadge" />
<Button
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="38dp"
android:layout_marginRight="25dp"
android:background="@drawable/apple" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/textShop"
android:layout_marginLeft="84dp"
android:layout_marginTop="30dp"
android:src="@drawable/s" />
</RelativeLayout>