Add interface for adding events
[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
bdd8f09c 27 <TextView
7be52756 28 android:id="@+id/description"
bdd8f09c
PT
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:text="Description:"
32 android:textAppearance="?android:attr/textAppearanceMedium" />
33
34 <TextView
35 android:id="@+id/description"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:text="Small Text"
39 android:textAppearance="?android:attr/textAppearanceSmall" />
40
41</LinearLayout>
This page took 0.010865 seconds and 4 git commands to generate.