-
Notifications
You must be signed in to change notification settings - Fork 0
/
slide_layout.xml
41 lines (37 loc) · 1.49 KB
/
slide_layout.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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/DarkAppTheme">
<ImageView
android:id="@+id/slide_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/slideHeading"
android:layout_centerHorizontal="true"
android:paddingBottom="22dp"
app:srcCompat="@drawable/rocket" />
<TextView
android:id="@+id/slideHeading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/slide_desc"
android:layout_centerHorizontal="true"
android:paddingBottom="18dp"
android:text="Cosmic Speed"
android:textColor="@color/colorWhite"
android:textSize="24sp" />
<TextView
android:id="@+id/slide_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:paddingLeft="40dp"
android:paddingRight="40dp"
android:text="@string/fast_feature"
android:textColor="@color/colorTransparentWhite"
android:textSize="18sp"
android:textStyle="normal" />
</RelativeLayout>