screen_action_bar.xml revision e2194445b078932733a2d1a02fc084ea2f3c7360
1<?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">
24    <ViewAnimator android:id="@+id/action_bar_animator"
25        android:layout_width="match_parent"
26        android:layout_height="wrap_content"
27        android:inAnimation="@anim/push_down_in_no_alpha"
28        android:outAnimation="@anim/push_down_out_no_alpha">
29        <com.android.internal.widget.ActionBarView
30            android:id="@+id/action_bar"
31            android:layout_width="match_parent"
32            android:layout_height="wrap_content"
33            style="?android:attr/windowActionBarStyle" />
34        <com.android.internal.widget.ActionBarContextView
35            android:id="@+id/action_context_bar"
36            android:layout_width="match_parent"
37            android:layout_height="wrap_content" />
38    </ViewAnimator>
39    <FrameLayout android:id="@android:id/content"
40        android:layout_width="match_parent" 
41        android:layout_height="0dip"
42        android:layout_weight="1"
43        android:foregroundGravity="fill_horizontal|top"
44        android:foreground="?android:attr/windowContentOverlay" />
45    <LinearLayout android:id="@+id/lower_action_context_bar"
46                  android:layout_width="match_parent"
47                  android:layout_height="wrap_content"
48                  style="?android:attr/windowActionBarStyle"
49                  android:visibility="gone" />
50</LinearLayout>
51