Remove trailing whitespace
[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:layout_width="match_parent"
9 android:layout_height="10dp"
10 />
11
12 <View
13 android:id="@+id/rowHeader"
14 android:layout_width="match_parent"
15 android:layout_height="7dp"
16 />
17
18 <View
19 android:layout_width="match_parent"
20 android:layout_height="1dp"
21 />
22
23 <TextView
24 android:id="@+id/smalleventtitle"
25 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
27 android:textAppearance="?android:attr/textAppearanceMedium" />
28
29 <LinearLayout
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content" >
32
33 <TextView
34 android:id="@+id/smalldatestart"
35 android:layout_width="0dip"
36 android:layout_height="wrap_content"
37 android:layout_weight="1"
38 android:textAppearance="?android:attr/textAppearanceSmall" />
39
40 <TextView
41 android:id="@+id/smalldateend"
42 android:layout_width="0dip"
43 android:layout_height="wrap_content"
44 android:layout_weight="1"
45 android:textAppearance="?android:attr/textAppearanceSmall" />
46 </LinearLayout>
47
48 </LinearLayout>
This page took 0.02329 seconds and 4 git commands to generate.