Fix the previous commit
[unical.git] / res / layout / event_row_layout.xml
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 <View
8 android:id="@+id/rowHeader"
9 android:layout_width="match_parent"
10 android:layout_height="5dp"
11 />
12
13 <TextView
14 android:id="@+id/smalleventtitle"
15 android:layout_width="match_parent"
16 android:layout_height="wrap_content"
17 android:textAppearance="?android:attr/textAppearanceMedium" />
18
19 <LinearLayout
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content" >
22
23 <TextView
24 android:id="@+id/smalldatestart"
25 android:layout_width="0dip"
26 android:layout_height="wrap_content"
27 android:layout_weight="0.85"
28 android:textAppearance="?android:attr/textAppearanceSmall" />
29
30 <TextView
31 android:id="@+id/smalldateend"
32 android:layout_width="179dp"
33 android:layout_height="wrap_content"
34 android:textAppearance="?android:attr/textAppearanceSmall" />
35 </LinearLayout>
36
37 </LinearLayout>
This page took 0.022354 seconds and 4 git commands to generate.