1 <?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 xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui" 24 android:id="@+id/recents_root" 25 android:layout_height="match_parent" 26 android:layout_width="wrap_content" 27 android:clipToPadding="false" 28 android:clipChildren="false" 29 systemui:recentItemLayout="@layout/system_bar_recent_item" 30 > 31 <View 32 android:id="@+id/recents_transition_background" 33 android:layout_height="match_parent" 34 android:layout_width="match_parent" 35 android:visibility="invisible" /> 36 <FrameLayout 37 android:id="@+id/recents_bg_protect" 38 android:background="@drawable/recents_bg_protect_tile" 39 android:layout_width="wrap_content" 40 android:layout_height="match_parent" 41 android:layout_alignParentBottom="true" 42 android:layout_marginBottom="@*android:dimen/system_bar_height" 43 android:clipToPadding="false" 44 android:clipChildren="false"> 45 <ImageView 46 android:id="@+id/recents_transition_placeholder_icon" 47 android:layout_width="wrap_content" 48 android:layout_height="wrap_content" 49 android:visibility="invisible" /> 50 51 <com.android.systemui.recent.RecentsVerticalScrollView android:id="@+id/recents_container" 52 android:layout_width="wrap_content" 53 android:layout_height="wrap_content" 54 android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin" 55 android:divider="@null" 56 android:stackFromBottom="true" 57 android:fadingEdge="vertical" 58 android:scrollbars="none" 59 android:fadingEdgeLength="20dip" 60 android:layout_gravity="bottom|left" 61 android:clipToPadding="false" 62 android:clipChildren="false"> 63 64 <LinearLayout android:id="@+id/recents_linear_layout" 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content" 67 android:orientation="vertical" 68 android:clipToPadding="false" 69 android:clipChildren="false"> 70 </LinearLayout> 71 72 </com.android.systemui.recent.RecentsVerticalScrollView> 73 74 <include layout="@layout/system_bar_no_recent_apps" 75 android:id="@+id/recents_no_apps" 76 android:layout_width="match_parent" 77 android:layout_height="match_parent" 78 android:layout_marginLeft="58dip" 79 android:layout_marginBottom="36dip" 80 android:visibility="invisible" /> 81 82 </FrameLayout> 83 84 <com.android.systemui.recent.StatusBarTouchProxy 85 android:id="@+id/status_bar_touch_proxy" 86 android:layout_width="match_parent" 87 android:layout_height="@*android:dimen/system_bar_height" 88 android:layout_alignParentBottom="true" 89 android:layout_alignParentLeft="true" 90 /> 91 92 93 </com.android.systemui.recent.RecentsPanelView> 94