blob: ee450826ab25b2bc51451cb4535da12deb26e5de [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
The Android Open Source Projected217d92008-12-17 18:05:52 -080017<ScrollView
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070018 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" >
The Android Open Source Projected217d92008-12-17 18:05:52 -080022
23 <LinearLayout
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070024 android:layout_width="fill_parent"
25 android:layout_height="wrap_content"
The Android Open Source Projected217d92008-12-17 18:05:52 -080026 android:orientation="vertical" >
27
28 <!-- Title: -->
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070029 <TextView
The Android Open Source Projected217d92008-12-17 18:05:52 -080030 android:id="@+id/title"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070031 android:layout_height="wrap_content"
32 android:layout_width="wrap_content"
The Android Open Source Projected217d92008-12-17 18:05:52 -080033 android:textStyle="bold"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070034 android:textSize="14sp"
35 android:textColor="@color/white"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070036 android:layout_marginLeft="20dip"
37 android:layout_marginRight="20dip"
The Android Open Source Projected217d92008-12-17 18:05:52 -080038 android:layout_marginTop="12dip"
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070039 android:layout_marginBottom="12dip" />
The Android Open Source Projected217d92008-12-17 18:05:52 -080040
41 <!-- Address: -->
42 <TableLayout
43 android:layout_width="fill_parent"
44 android:layout_height="wrap_content"
45 android:orientation="vertical">
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070046
The Android Open Source Projected217d92008-12-17 18:05:52 -080047 <TextView
48 android:id="@+id/address_header"
49 android:layout_height="wrap_content"
50 android:layout_width="wrap_content"
51 android:text="@string/page_info_address"
52 android:textSize="14sp"
53 android:textColor="@color/white"
54 android:gravity="left"
55 android:layout_marginLeft="20dip"
56 android:layout_marginRight="20dip"
57 android:layout_marginBottom="10dip" />
58
59 <TextView
60 android:id="@+id/address"
61 android:layout_height="wrap_content"
62 android:layout_width="wrap_content"
63 android:textSize="14sp"
64 android:textColor="@color/white"
65 android:gravity="left"
66 android:layout_marginLeft="20dip"
67 android:layout_marginRight="20dip"
68 android:layout_marginBottom="12dip" />
69
70 </TableLayout>
71
72 </LinearLayout>
The Android Open Source Projectba6d7b82008-10-21 07:00:00 -070073
The Android Open Source Projected217d92008-12-17 18:05:52 -080074</ScrollView>