blob: a731f8d1ffed410c09780748f835bd94569f04e7 [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 Kolb4e29b3d2011-11-10 14:39:07 -080017<FrameLayout 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"
Romain Guy15b8ec62010-01-08 15:06:43 -080019 android:layout_width="match_parent"
Michael Kolb4e29b3d2011-11-10 14:39:07 -080020 android:layout_height="match_parent"
21 android:background="@android:drawable/dialog_frame" >
22 <LinearLayout
23 android:id="@+id/inner_container"
Romain Guy15b8ec62010-01-08 15:06:43 -080024 android:layout_width="match_parent"
25 android:layout_height="match_parent"
Michael Kolb4e29b3d2011-11-10 14:39:07 -080026 android:orientation="vertical" >
27 </LinearLayout>
The Android Open Source Project0c908882009-03-03 19:32:16 -080028 <LinearLayout
Romain Guy15b8ec62010-01-08 15:06:43 -080029 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080030 android:layout_height="wrap_content"
31 android:orientation="vertical"
32 android:layout_gravity="right"
Michael Kolb4e29b3d2011-11-10 14:39:07 -080033 android:background="@color/black"
The Android Open Source Project0c908882009-03-03 19:32:16 -080034 android:gravity="right" >
35 <ImageButton android:id="@+id/subwindow_close"
36 android:focusable="true"
The Android Open Source Project0c908882009-03-03 19:32:16 -080037 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
Michael Kolb4e29b3d2011-11-10 14:39:07 -080039 style="@style/HoloButton"
40 android:src="@drawable/ic_close_window_holo_dark" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080041 </LinearLayout>
Michael Kolb4e29b3d2011-11-10 14:39:07 -080042</FrameLayout>