-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_introduction.xml
46 lines (43 loc) · 1.84 KB
/
activity_introduction.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
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="net.androidbootcamp.hotfoot.Introduction"
android:background="#B35243">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/sprintTitle"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="@string/txtSprintIntro"
android:textIsSelectable="false"
android:textColor="#FFFFFF"
android:textSize="27sp"
android:layout_marginTop="75sp"
android:textStyle="bold" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/txtSprintDescription"
android:id="@+id/txtSprintDescription"
android:layout_below="@+id/sprintTitle"
android:layout_centerHorizontal="true"
android:textColor="#FFFFFF"
android:gravity="center"
android:textSize="15sp"
android:layout_marginTop="20sp" />
<Button
android:layout_width="150dp"
android:layout_height="wrap_content"
android:text="@string/btnContinue"
android:id="@+id/btnContinue1"
android:layout_below="@+id/txtSprintDescription"
android:layout_centerHorizontal="true"
android:textSize="24sp"
android:textColor="#000000"
android:background="#FFFFFF"
android:layout_marginTop="30sp" />
</RelativeLayout>