blob: ab04e257ae2cde77578d5581e25858338d1e8f3b [file] [log] [blame]
Jeff Sharkey2ae666e2009-07-21 19:30:57 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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
Jeff Sharkeyd046a032009-08-03 11:37:07 -070017<ScrollView
18 xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070019 android:layout_width="fill_parent"
20 android:layout_height="fill_parent"
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070021 android:fillViewport="true">
22
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070023 <LinearLayout
24 android:layout_width="fill_parent"
Jeff Sharkeyd046a032009-08-03 11:37:07 -070025 android:layout_height="fill_parent"
26 android:orientation="vertical"
27 android:fillViewport="true">
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070028
Jeff Sharkeyd046a032009-08-03 11:37:07 -070029 <!-- TODO: insert aggregate summary widget -->
30 <!-- TODO: insert contact tab widget -->
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070031
Jeff Sharkeyd046a032009-08-03 11:37:07 -070032 <FrameLayout
33 android:id="@android:id/tabcontent"
34 android:layout_width="fill_parent"
35 android:layout_height="fill_parent"
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070036 android:layout_weight="1"
Jeff Sharkeyd046a032009-08-03 11:37:07 -070037 android:fillViewport="true" />
38
39 <LinearLayout
40 android:layout_width="fill_parent"
41 android:layout_height="wrap_content"
42 android:orientation="horizontal"
43 style="@android:style/ButtonBar">
44
45 <Button
46 android:id="@+id/btn_done"
47 android:layout_width="0dip"
48 android:layout_height="wrap_content"
49 android:layout_weight="1"
50 android:text="@string/menu_done" />
51
52 <Button
53 android:id="@+id/btn_discard"
54 android:layout_width="0dip"
55 android:layout_height="wrap_content"
56 android:layout_weight="1"
57 android:text="@string/menu_doNotSave" />
58
59 </LinearLayout>
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070060
61 </LinearLayout>
62
Jeff Sharkeyd046a032009-08-03 11:37:07 -070063</ScrollView>