-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.xml
33 lines (30 loc) · 1.24 KB
/
header.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
<?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:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Information">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/txtTeamTitle"
android:id="@+id/txtTeamTitle"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="30sp"
android:textStyle="bold"
android:layout_marginTop="50dp"
android:layout_gravity="center_horizontal"
android:textColor="#B35243" />
<TextView
android:layout_width="300dp"
android:layout_height="wrap_content"
android:text="@string/txtTeamDescription"
android:id="@+id/txtTeamDescription"
android:gravity="center"
android:layout_below="@+id/txtTeamTitle"
android:layout_alignLeft="@+id/txtTeamTitle"
android:layout_alignStart="@+id/txtTeamTitle"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp" />
</RelativeLayout>