blob: 2a7171724857c00b30946e939b7844e8120486fd [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
Jeff Hamilton5297c6a2009-10-01 02:22:33 -07007
Jeff Sharkey2ae666e2009-07-21 19:30:57 -07008 http://www.apache.org/licenses/LICENSE-2.0
Jeff Hamilton5297c6a2009-10-01 02:22:33 -07009
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070010 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 Hamilton5297c6a2009-10-01 02:22:33 -070017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy6304c0b2010-01-08 15:06:49 -080018 android:layout_width="match_parent"
19 android:layout_height="match_parent"
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070020 android:orientation="vertical"
21>
22
23 <ScrollView
Romain Guy6304c0b2010-01-08 15:06:49 -080024 android:layout_width="match_parent"
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070025 android:layout_height="1px"
26 android:layout_weight="1"
27 android:fillViewport="true"
28 >
29
30 <LinearLayout android:id="@+id/editors"
Romain Guy6304c0b2010-01-08 15:06:49 -080031 android:layout_width="match_parent"
32 android:layout_height="match_parent"
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070033 android:orientation="vertical"
34 />
35
36 </ScrollView>
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070037
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070038 <LinearLayout
Romain Guy6304c0b2010-01-08 15:06:49 -080039 android:layout_width="match_parent"
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070040 android:layout_height="wrap_content"
41 android:orientation="horizontal"
42 style="@android:style/ButtonBar"
43 >
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070044
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070045 <Button android:id="@+id/btn_done"
46 android:layout_width="0dip"
Jeff Sharkeyd046a032009-08-03 11:37:07 -070047 android:layout_height="wrap_content"
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070048 android:layout_weight="1"
49 android:text="@string/menu_done"
50 />
Jeff Sharkeyd046a032009-08-03 11:37:07 -070051
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070052 <Button android:id="@+id/btn_discard"
53 android:layout_width="0dip"
54 android:layout_height="wrap_content"
55 android:layout_weight="1"
56 android:text="@string/menu_doNotSave"
57 />
Jeff Sharkey2ae666e2009-07-21 19:30:57 -070058
59 </LinearLayout>
60
Jeff Hamilton5297c6a2009-10-01 02:22:33 -070061</LinearLayout>