The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [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 |
| 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 | |
Michael Kolb | 86734cd | 2012-01-17 14:05:36 -0800 | [diff] [blame] | 17 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 18 | android:id="@+id/subwindow_container" |
Michael Kolb | 86734cd | 2012-01-17 14:05:36 -0800 | [diff] [blame] | 19 | android:orientation="vertical" |
| 20 | android:background="@android:drawable/dialog_frame" |
Romain Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame] | 21 | android:layout_width="match_parent" |
Bart Sears | 6e10387 | 2011-12-12 18:59:28 -0800 | [diff] [blame] | 22 | android:layout_height="match_parent" > |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 23 | <LinearLayout |
Romain Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame] | 24 | android:layout_width="match_parent" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 25 | android:layout_height="wrap_content" |
Michael Kolb | 86734cd | 2012-01-17 14:05:36 -0800 | [diff] [blame] | 26 | android:background="@color/black" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 27 | android:layout_gravity="right" |
| 28 | android:gravity="right" > |
| 29 | <ImageButton android:id="@+id/subwindow_close" |
Michael Kolb | 86734cd | 2012-01-17 14:05:36 -0800 | [diff] [blame] | 30 | style="@style/HoloButton" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 31 | android:focusable="true" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 32 | android:layout_width="wrap_content" |
| 33 | android:layout_height="wrap_content" |
Michael Kolb | 86734cd | 2012-01-17 14:05:36 -0800 | [diff] [blame] | 34 | android:src="@drawable/ic_close_window_holo_dark" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 35 | </LinearLayout> |
Michael Kolb | 86734cd | 2012-01-17 14:05:36 -0800 | [diff] [blame] | 36 | <LinearLayout |
| 37 | android:id="@+id/inner_container" |
| 38 | android:layout_width="match_parent" |
| 39 | android:layout_height="match_parent" |
| 40 | android:orientation="vertical" /> |
| 41 | </LinearLayout> |