• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    <FrameLayout
32        android:id="@+id/recents_bg_protect"
33        android:background="@drawable/recents_bg_protect_tile"
34        android:layout_width="wrap_content"
35        android:layout_height="match_parent"
36        android:layout_alignParentBottom="true"
37        android:layout_marginBottom="@*android:dimen/system_bar_height"
38        android:clipToPadding="false"
39        android:clipChildren="false">
40
41        <com.android.systemui.recent.RecentsVerticalScrollView android:id="@+id/recents_container"
42            android:layout_width="wrap_content"
43            android:layout_height="wrap_content"
44            android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin"
45            android:divider="@null"
46            android:stackFromBottom="true"
47            android:fadingEdge="vertical"
48            android:scrollbars="none"
49            android:fadingEdgeLength="20dip"
50            android:layout_gravity="bottom|left"
51            android:clipToPadding="false"
52            android:clipChildren="false">
53
54            <LinearLayout android:id="@+id/recents_linear_layout"
55                android:layout_width="wrap_content"
56                android:layout_height="wrap_content"
57                android:orientation="vertical"
58                android:clipToPadding="false"
59                android:clipChildren="false">
60            </LinearLayout>
61
62        </com.android.systemui.recent.RecentsVerticalScrollView>
63
64        <include layout="@layout/system_bar_no_recent_apps"
65            android:id="@+id/recents_no_apps"
66            android:layout_width="match_parent"
67            android:layout_height="match_parent"
68            android:layout_marginLeft="58dip"
69            android:layout_marginBottom="36dip"
70            android:visibility="invisible" />
71
72    </FrameLayout>
73
74    <com.android.systemui.recent.StatusBarTouchProxy
75        android:id="@+id/status_bar_touch_proxy"
76        android:layout_width="match_parent"
77        android:layout_height="@*android:dimen/system_bar_height"
78        android:layout_alignParentBottom="true"
79        android:layout_alignParentLeft="true"
80    />
81
82
83</com.android.systemui.recent.RecentsPanelView>
84