Jeff Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 1 | <?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 Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 7 | |
Jeff Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 9 | |
Jeff Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 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 Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 17 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
Romain Guy | 6304c0b | 2010-01-08 15:06:49 -0800 | [diff] [blame] | 18 | android:layout_width="match_parent" |
| 19 | android:layout_height="match_parent" |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 20 | android:orientation="vertical" |
| 21 | > |
| 22 | |
| 23 | <ScrollView |
Romain Guy | 6304c0b | 2010-01-08 15:06:49 -0800 | [diff] [blame] | 24 | android:layout_width="match_parent" |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 25 | android:layout_height="1px" |
| 26 | android:layout_weight="1" |
| 27 | android:fillViewport="true" |
| 28 | > |
| 29 | |
| 30 | <LinearLayout android:id="@+id/editors" |
Romain Guy | 6304c0b | 2010-01-08 15:06:49 -0800 | [diff] [blame] | 31 | android:layout_width="match_parent" |
| 32 | android:layout_height="match_parent" |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 33 | android:orientation="vertical" |
| 34 | /> |
| 35 | |
| 36 | </ScrollView> |
Jeff Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 37 | |
Jeff Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 38 | <LinearLayout |
Romain Guy | 6304c0b | 2010-01-08 15:06:49 -0800 | [diff] [blame] | 39 | android:layout_width="match_parent" |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 40 | android:layout_height="wrap_content" |
| 41 | android:orientation="horizontal" |
| 42 | style="@android:style/ButtonBar" |
| 43 | > |
Jeff Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 44 | |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 45 | <Button android:id="@+id/btn_done" |
| 46 | android:layout_width="0dip" |
Jeff Sharkey | d046a03 | 2009-08-03 11:37:07 -0700 | [diff] [blame] | 47 | android:layout_height="wrap_content" |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 48 | android:layout_weight="1" |
| 49 | android:text="@string/menu_done" |
| 50 | /> |
Jeff Sharkey | d046a03 | 2009-08-03 11:37:07 -0700 | [diff] [blame] | 51 | |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 52 | <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 Sharkey | 2ae666e | 2009-07-21 19:30:57 -0700 | [diff] [blame] | 58 | |
| 59 | </LinearLayout> |
| 60 | |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 61 | </LinearLayout> |