First real commit
[unical.git] / res / layout / eventview.xml
CommitLineData
bdd8f09c
PT
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical" >
6
7 <TextView
8 android:id="@+id/eventTitle"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:gravity="center"
12 android:text=""
13 android:textSize="35sp"
14 android:selectAllOnFocus="true"
15 android:textIsSelectable="true"
16 />
17
18 <TextView
19 android:id="@+id/date"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:selectAllOnFocus="true"
23 android:textIsSelectable="true"
24 android:textSize="20sp"
25 />
26
27 <android.support.v7.widget.Space
28 android:id="@+id/space1"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content" />
31
32 <TextView
33 android:id="@+id/desc"
34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:text="Description:"
37 android:textAppearance="?android:attr/textAppearanceMedium" />
38
39 <TextView
40 android:id="@+id/description"
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:text="Small Text"
44 android:textAppearance="?android:attr/textAppearanceSmall" />
45
46</LinearLayout>
This page took 0.01284 seconds and 4 git commands to generate.