blob: f117b059584fcc6248c2dfe8c69d75d60ff33381 [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
Vivek Sekhared791da2015-02-22 12:39:05 -08007
The Android Open Source Project0c908882009-03-03 19:32:16 -08008 http://www.apache.org/licenses/LICENSE-2.0
Vivek Sekhared791da2015-02-22 12:39:05 -08009
The Android Open Source Project0c908882009-03-03 19:32:16 -080010 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"
Enrico Ros1f5a0952014-11-18 20:15:48 -080026 android:background="@color/NavigationBarBackground"
Vivek Sekhared791da2015-02-22 12:39:05 -080027 android:layout_gravity="end"
28 android:gravity="end" >
Enrico Ros1f5a0952014-11-18 20:15:48 -080029 <ImageButton
30 android:id="@+id/subwindow_close"
31 style="@style/NavButton"
The Android Open Source Project0c908882009-03-03 19:32:16 -080032 android:layout_width="wrap_content"
Enrico Ros1f5a0952014-11-18 20:15:48 -080033 android:focusable="true"
34 android:src="@drawable/ic_action_stop" />
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>