blob: e3b117c10b1cf5967be4017782f1990fe91e3277 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<?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
Vivek Sekhared791da2015-02-22 12:39:05 -08007
The Android Open Source Project0c908882009-03-03 19:32:16 -08008 http://www.apache.org/licenses/LICENSE-2.0
Vivek Sekhared791da2015-02-22 12:39:05 -08009
The Android Open Source Project0c908882009-03-03 19:32:16 -080010 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<ScrollView
18 xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy15b8ec62010-01-08 15:06:43 -080019 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080020 android:layout_height="wrap_content"
21 android:orientation="vertical" >
22
23 <LinearLayout
Romain Guy15b8ec62010-01-08 15:06:43 -080024 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080025 android:layout_height="wrap_content"
26 android:orientation="vertical" >
Vivek Sekhared791da2015-02-22 12:39:05 -080027
The Android Open Source Project0c908882009-03-03 19:32:16 -080028 <!-- Title: -->
29 <TextView
30 android:id="@+id/title"
31 android:layout_height="wrap_content"
32 android:layout_width="wrap_content"
33 android:textStyle="bold"
Vivek Sekhared791da2015-02-22 12:39:05 -080034 android:layout_marginStart="20dip"
35 android:layout_marginEnd="20dip"
The Android Open Source Project0c908882009-03-03 19:32:16 -080036 android:layout_marginTop="12dip"
37 android:layout_marginBottom="12dip" />
Vivek Sekhared791da2015-02-22 12:39:05 -080038
The Android Open Source Project0c908882009-03-03 19:32:16 -080039 <!-- Address: -->
40 <TableLayout
Romain Guy15b8ec62010-01-08 15:06:43 -080041 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080042 android:layout_height="wrap_content"
43 android:orientation="vertical">
Vivek Sekhared791da2015-02-22 12:39:05 -080044
45 <TextView
The Android Open Source Project0c908882009-03-03 19:32:16 -080046 android:id="@+id/address_header"
47 android:layout_height="wrap_content"
48 android:layout_width="wrap_content"
49 android:text="@string/page_info_address"
Vivek Sekhared791da2015-02-22 12:39:05 -080050 android:gravity="start"
51 android:layout_marginStart="20dip"
52 android:layout_marginEnd="20dip"
The Android Open Source Project0c908882009-03-03 19:32:16 -080053 android:layout_marginBottom="10dip" />
Vivek Sekhared791da2015-02-22 12:39:05 -080054
The Android Open Source Project0c908882009-03-03 19:32:16 -080055 <TextView
56 android:id="@+id/address"
57 android:layout_height="wrap_content"
58 android:layout_width="wrap_content"
Vivek Sekhared791da2015-02-22 12:39:05 -080059 android:gravity="start"
60 android:layout_marginStart="20dip"
61 android:layout_marginEnd="20dip"
The Android Open Source Project0c908882009-03-03 19:32:16 -080062 android:layout_marginBottom="12dip" />
Vivek Sekhared791da2015-02-22 12:39:05 -080063
The Android Open Source Project0c908882009-03-03 19:32:16 -080064 </TableLayout>
Vivek Sekhared791da2015-02-22 12:39:05 -080065
The Android Open Source Project0c908882009-03-03 19:32:16 -080066 </LinearLayout>
67
68</ScrollView>