]> www.average.org Git - WhereAmI.git/blob - res/layout/main.xml
1803a66f32dc946d9e25475c8a035f19c7786d10
[WhereAmI.git] / res / layout / main.xml
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="match_parent"
5     android:layout_height="match_parent"
6     android:background="#ffffffff"
7 >
8   <LinearLayout
9     android:orientation="horizontal"
10     android:layout_width="match_parent"
11     android:layout_height="0px"
12     android:layout_weight="2"
13   >
14     <TextView
15       android:id="@+id/time"
16       android:layout_width="0px" 
17       android:layout_height="match_parent" 
18       android:layout_weight="2"
19       android:gravity="center"
20       android:textColor="#ff000000"
21       android:textSize="48sp"
22     />
23     <View
24       android:layout_width="3dp"
25       android:layout_height="match_parent"
26       android:background="#ff000000"
27     />
28     <TextView
29       android:id="@+id/date"
30       android:layout_width="0px" 
31       android:layout_height="match_parent" 
32       android:layout_weight="3"
33       android:gravity="center"
34       android:textColor="#ff000000"
35       android:textSize="24sp"
36     />
37   </LinearLayout>
38   <View
39     android:layout_width="match_parent"
40     android:layout_height="3dp"
41     android:background="#ff000000"
42   />
43   <TextView
44     android:id="@+id/location"
45     android:layout_width="match_parent" 
46     android:layout_height="0px" 
47     android:gravity="center"
48     android:layout_weight="3"
49     android:textColor="#ff000000"
50     android:textSize="24sp"
51     android:text="location"
52   />
53   <View
54     android:layout_width="match_parent"
55     android:layout_height="3dp"
56     android:background="#ff000000"
57   />
58   <TextView
59     android:id="@+id/phonecall"
60     android:layout_width="match_parent" 
61     android:layout_height="0px" 
62     android:gravity="center"
63     android:layout_weight="3"
64     android:textColor="#ff000000"
65     android:textSize="24sp"
66     android:text="phonecall"
67   />
68   <View
69     android:layout_width="match_parent"
70     android:layout_height="3dp"
71     android:background="#ff000000"
72   />
73   <TextView
74     android:id="@+id/timestamp"
75     android:layout_width="match_parent" 
76     android:layout_height="0px" 
77     android:gravity="center"
78     android:layout_weight="1"
79     android:textColor="#ff000000"
80     android:textSize="18sp"
81     android:text="@string/lasttry"
82   />
83 </LinearLayout>
84