-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_main.xml
72 lines (63 loc) · 2.69 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
<?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"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:src="@drawable/taekwondo" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:gravity="center"
android:paddingTop="20dp"
android:text="ΑΤΡΩΤΟΣ "
android:textColor="@android:color/black"
android:textSize="40sp"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:gravity="center"
android:paddingTop="10dp"
android:text="Αθλητικός Σύλλογος "
android:textSize="30sp"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:gravity="center"
android:paddingTop="10dp"
android:text="Τμήματα παιδικά,εφηβικά,αγωνιστικό,αυτοάμυνας "
android:textSize="20sp"
android:textStyle="bold" />
</LinearLayout>
<TextView
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:fontFamily="sans-serif-light"
android:padding="20dp"
android:text="Ατλαντίδος 43 - Κ. Τούμπα / τηλ 2310950351"
android:textSize="20sp" />
<TextView
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:fontFamily="sans-serif-light"
android:padding="20dp"
android:text="Εγγραφές καθημερινά εκτός Κυριακής"
android:textSize="20sp" />
</RelativeLayout>