blob: fb6fa377b2e2623b4757b39f1602cfcafd6b6a33 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<?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 Kolb86734cd2012-01-17 14:05:36 -080017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
The Android Open Source Project0c908882009-03-03 19:32:16 -080018 android:id="@+id/subwindow_container"
Michael Kolb86734cd2012-01-17 14:05:36 -080019 android:orientation="vertical"
20 android:background="@android:drawable/dialog_frame"
Romain Guy15b8ec62010-01-08 15:06:43 -080021 android:layout_width="match_parent"
Bart Sears6e103872011-12-12 18:59:28 -080022 android:layout_height="match_parent" >
The Android Open Source Project0c908882009-03-03 19:32:16 -080023 <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"
Michael Kolb86734cd2012-01-17 14:05:36 -080026 android:background="@color/black"
The Android Open Source Project0c908882009-03-03 19:32:16 -080027 android:layout_gravity="right"
28 android:gravity="right" >
29 <ImageButton android:id="@+id/subwindow_close"
Michael Kolb86734cd2012-01-17 14:05:36 -080030 style="@style/HoloButton"
The Android Open Source Project0c908882009-03-03 19:32:16 -080031 android:focusable="true"
The Android Open Source Project0c908882009-03-03 19:32:16 -080032 android:layout_width="wrap_content"
33 android:layout_height="wrap_content"
Michael Kolb86734cd2012-01-17 14:05:36 -080034 android:src="@drawable/ic_close_window_holo_dark" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080035 </LinearLayout>
Michael Kolb86734cd2012-01-17 14:05:36 -080036 <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>