blob: b10b72a651933a63c15445ab62b0040becdeda4e [file] [log] [blame]
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="fill_parent"
20 android:layout_height="wrap_content"
21 android:orientation="vertical" >
22
23 <!-- Title: -->
24 <TextView
25 android:id="@+id/title"
26 android:layout_height="wrap_content"
27 android:layout_width="wrap_content"
28 android:textStyle="bold"
29 android:textSize="14sp"
30 android:textColor="@color/white"
31 android:layout_marginLeft="20dip"
32 android:layout_marginRight="20dip"
33 android:layout_marginTop="12dip"
34 android:layout_marginBottom="12dip" />
35
36 <!-- Address: -->
37 <TableLayout
38 android:layout_width="fill_parent"
39 android:layout_height="wrap_content"
40 android:orientation="vertical">
41
42 <TextView
43 android:id="@+id/address_header"
44 android:layout_height="wrap_content"
45 android:layout_width="wrap_content"
46 android:text="@string/page_info_address"
47 android:textSize="14sp"
48 android:textColor="@color/white"
49 android:gravity="left"
50 android:layout_marginLeft="20dip"
51 android:layout_marginRight="20dip"
52 android:layout_marginBottom="10dip" />
53
54 <TextView
55 android:id="@+id/address"
56 android:layout_height="wrap_content"
57 android:layout_width="wrap_content"
58 android:textSize="14sp"
59 android:textColor="@color/white"
60 android:gravity="left"
61 android:layout_marginLeft="20dip"
62 android:layout_marginRight="20dip"
63 android:layout_marginBottom="12dip" />
64
65 </TableLayout>
66
67</LinearLayout>