blob: 2fe22ff53e2818dc8066b8699e1bb303ed63a0ec [file] [log] [blame]
Jim Miller9f0f0e02011-05-17 20:06:29 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* apps/common/assets/default/default/skins/StatusBar.xml
4**
5** Copyright 2010, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<com.android.systemui.recent.RecentsPanelView
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 android:id="@+id/recents_root"
24 android:layout_height="match_parent"
Jim Millerf2a16b22011-07-06 17:32:48 -070025 android:layout_width="match_parent">
Jim Miller9f0f0e02011-05-17 20:06:29 -070026
27 <FrameLayout
28 android:id="@+id/recents_bg_protect"
Jim Millerf2a16b22011-07-06 17:32:48 -070029 android:background="@drawable/status_bar_recents_background"
Michael Jurka3b1fc472011-06-13 10:54:40 -070030 android:layout_width="match_parent"
Jim Miller9f0f0e02011-05-17 20:06:29 -070031 android:layout_height="match_parent"
32 android:layout_alignParentBottom="true"
Jim Miller9f0f0e02011-05-17 20:06:29 -070033 android:clipToPadding="false"
34 android:clipChildren="false">
35
36 <LinearLayout android:id="@+id/recents_glow"
37 android:layout_width="wrap_content"
Michael Jurka3cd0a592011-08-16 12:40:30 -070038 android:layout_height="match_parent"
Jim Miller9f0f0e02011-05-17 20:06:29 -070039 android:layout_gravity="bottom|right"
Jim Miller9f0f0e02011-05-17 20:06:29 -070040 android:orientation="horizontal"
41 android:clipToPadding="false"
42 android:clipChildren="false"
43 >
44 <com.android.systemui.recent.RecentsHorizontalScrollView android:id="@+id/recents_container"
45 android:layout_width="wrap_content"
Michael Jurka3cd0a592011-08-16 12:40:30 -070046 android:layout_height="match_parent"
Jim Miller9f0f0e02011-05-17 20:06:29 -070047 android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin"
48 android:divider="@null"
49 android:stackFromBottom="true"
50 android:fadingEdge="horizontal"
51 android:scrollbars="none"
52 android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length"
Jim Miller9f0f0e02011-05-17 20:06:29 -070053 android:layout_gravity="bottom|left"
54 android:orientation="horizontal"
55 android:clipToPadding="false"
56 android:clipChildren="false">
57
58 <LinearLayout android:id="@+id/recents_linear_layout"
59 android:layout_width="wrap_content"
Michael Jurka3cd0a592011-08-16 12:40:30 -070060 android:layout_height="match_parent"
Jim Miller9f0f0e02011-05-17 20:06:29 -070061 android:orientation="horizontal"
62 android:clipToPadding="false"
63 android:clipChildren="false">
64 </LinearLayout>
65
66 </com.android.systemui.recent.RecentsHorizontalScrollView>
67
68 </LinearLayout>
69
70 </FrameLayout>
71
Michael Jurka6d667082011-09-16 17:04:40 -070072 <include layout="@layout/status_bar_no_recent_apps"
73 android:id="@+id/recents_no_apps"
74 android:layout_width="match_parent"
75 android:layout_height="match_parent"
76 android:visibility="invisible" />
77
Jim Miller9f0f0e02011-05-17 20:06:29 -070078 <View android:id="@+id/recents_dismiss_button"
79 android:layout_width="80px"
80 android:layout_height="@*android:dimen/status_bar_height"
81 android:layout_alignParentBottom="true"
82 android:layout_alignParentLeft="true"
83 android:background="@drawable/ic_sysbar_back_ime"
Jim Millerf2a16b22011-07-06 17:32:48 -070084 android:visibility="gone"
Jim Miller9f0f0e02011-05-17 20:06:29 -070085 />
86
87</com.android.systemui.recent.RecentsPanelView>