/[projects]/android/TrainInfo/res/layout/departurelist.xml
ViewVC logotype

Contents of /android/TrainInfo/res/layout/departurelist.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 237 - (show annotations) (download) (as text)
Sat Aug 8 19:02:20 2009 UTC (14 years, 9 months ago) by torben
File MIME type: text/xml
File size: 1325 byte(s)
First version
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:padding="5dp"
7 >
8
9 <TextView android:id="@+id/stationName"
10 android:layout_width="wrap_content"
11 android:layout_height="wrap_content"
12 android:textSize="20sp"
13 android:textStyle="bold"
14 />
15 <TextView android:id="@+id/stationAddr"
16 android:layout_width="wrap_content"
17 android:layout_height="wrap_content"
18 android:textSize="20sp"
19 />
20 <TextView android:id="@+id/stationDistance"
21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content"
23 android:textSize="18sp"
24 />
25
26 <View
27 android:layout_width="fill_parent"
28 android:layout_height="2dip"
29 android:background="#aaaaaa"
30 android:padding="12dip"
31 />
32
33 <ListView android:id="@id/android:list"
34 android:layout_width="fill_parent"
35 android:layout_height="wrap_content"
36 android:clickable="false"
37 />
38 <TextView
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
41 />
42
43 </LinearLayout>

  ViewVC Help
Powered by ViewVC 1.1.20