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 android:id="@+id/recents_root" 24 android:layout_height="match_parent" 25 android:layout_width="match_parent"> 26 27 <FrameLayout 28 android:id="@+id/recents_bg_protect" 29 android:background="@drawable/status_bar_recents_background" 30 android:layout_width="match_parent" 31 android:layout_height="match_parent" 32 android:layout_alignParentBottom="true" 33 android:clipToPadding="false" 34 android:clipChildren="false"> 35 36 <LinearLayout android:id="@+id/recents_glow" 37 android:layout_width="wrap_content" 38 android:layout_height="match_parent" 39 android:layout_gravity="bottom|right" 40 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" 46 android:layout_height="match_parent" 47 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" 53 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" 60 android:layout_height="match_parent" 61 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 72 <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 78 </com.android.systemui.recent.RecentsPanelView> 79