blob: 70af26519ea63312839346d4b87cc663b48d3887 [file] [log] [blame]
Adam Powell33b97432010-04-20 10:01:14 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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
17<!--
18This is an optimized layout for a screen with the Action Bar enabled.
19-->
20
21<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
22 android:orientation="vertical"
23 android:fitsSystemWindows="true">
Adam Powell45f1e082010-12-10 14:20:13 -080024 <com.android.internal.widget.ActionBarContainer android:id="@+id/action_bar_container"
Adam Powell89e06452010-06-23 20:24:52 -070025 android:layout_width="match_parent"
Adam Powell45f1e082010-12-10 14:20:13 -080026 android:layout_height="wrap_content"
27 style="?android:attr/actionBarStyle">
Adam Powell89e06452010-06-23 20:24:52 -070028 <com.android.internal.widget.ActionBarView
29 android:id="@+id/action_bar"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
Adam Powellbc234a12010-09-09 17:03:50 -070032 style="?android:attr/actionBarStyle" />
Adam Powell89e06452010-06-23 20:24:52 -070033 <com.android.internal.widget.ActionBarContextView
34 android:id="@+id/action_context_bar"
35 android:layout_width="match_parent"
Adam Powellbc234a12010-09-09 17:03:50 -070036 android:layout_height="wrap_content"
Adam Powelld8b3f2e2010-12-02 13:37:03 -080037 android:visibility="gone"
Adam Powellbc234a12010-09-09 17:03:50 -070038 style="?android:attr/actionModeStyle" />
Adam Powell45f1e082010-12-10 14:20:13 -080039 </com.android.internal.widget.ActionBarContainer>
Adam Powell33b97432010-04-20 10:01:14 -070040 <FrameLayout android:id="@android:id/content"
41 android:layout_width="match_parent"
42 android:layout_height="0dip"
43 android:layout_weight="1"
44 android:foregroundGravity="fill_horizontal|top"
45 android:foreground="?android:attr/windowContentOverlay" />
Adam Powell89e06452010-06-23 20:24:52 -070046 <LinearLayout android:id="@+id/lower_action_context_bar"
Adam Powell33b97432010-04-20 10:01:14 -070047 android:layout_width="match_parent"
48 android:layout_height="wrap_content"
Adam Powellbc234a12010-09-09 17:03:50 -070049 style="?android:attr/actionBarStyle"
Adam Powell33b97432010-04-20 10:01:14 -070050 android:visibility="gone" />
51</LinearLayout>