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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1763 - (show annotations) (download) (as text)
Thu Mar 22 10:17:30 2012 UTC (12 years, 1 month ago) by torben
File MIME type: text/xml
File size: 1897 byte(s)
Lint corrections
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
4 android:orientation="vertical"
5 android:layout_width="fill_parent"
6 android:layout_height="fill_parent"
7 android:padding="5dp"
8 >
9 <LinearLayout
10 android:orientation="horizontal"
11 android:layout_width="fill_parent"
12 android:layout_height="wrap_content"
13 android:padding="5dp"
14 >
15 <ImageView
16 android:layout_width="wrap_content"
17 android:layout_height="wrap_content"
18 android:src="@drawable/train"
19 android:paddingBottom="2px"
20 android:paddingRight="20px"
21 />
22 <TextView
23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 android:text="@string/app_name"
26 android:textSize="22sp"
27 android:textStyle="bold"
28 android:paddingTop="6px"
29 />
30 </LinearLayout>
31
32 <Button android:id="@+id/nearest"
33 android:layout_width="fill_parent"
34 android:layout_height="wrap_content"
35 android:text="@string/welcome_nearest" />
36
37 <Button android:id="@+id/search"
38 android:layout_width="fill_parent"
39 android:layout_height="wrap_content"
40 android:text="@string/welcome_search" />
41
42 <Button android:id="@+id/favorites"
43 android:layout_width="fill_parent"
44 android:layout_height="wrap_content"
45 android:text="@string/welcome_favorites" />
46
47 <View android:layout_width="fill_parent"
48 android:layout_height="15dp"
49 />
50
51
52
53 <View android:layout_width="fill_parent"
54 android:layout_height="15dp"
55 />
56
57
58
59 <Button android:id="@+id/about"
60 android:layout_width="fill_parent"
61 android:layout_height="wrap_content"
62 android:text="@string/welcome_about" />
63
64 </LinearLayout>

  ViewVC Help
Powered by ViewVC 1.1.20