add tiny bar on the event list`
[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 <ImageView
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:text="Medium Text"
18 android:textAppearance="?android:attr/textAppearanceMedium" />
19
20 <LinearLayout
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content" >
23
24 <TextView
25 android:id="@+id/smalldatestart"
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"
28 android:layout_weight="0.85"
29 android:text="Small Text"
30 android:textAppearance="?android:attr/textAppearanceSmall" />
31
32 <TextView
33 android:id="@+id/smalldateend"
34 android:layout_width="179dp"
35 android:layout_height="wrap_content"
36 android:text="Small Text"
37 android:textAppearance="?android:attr/textAppearanceSmall" />
38 </LinearLayout>
39
40 </LinearLayout>
This page took 0.020056 seconds and 4 git commands to generate.