• 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="match_parent"
27    systemui:recentItemLayout="@layout/status_bar_recent_item"
28    >
29    <FrameLayout
30        android:id="@+id/recents_bg_protect"
31        android:background="@drawable/status_bar_recents_background"
32        android:layout_width="match_parent"
33        android:layout_height="match_parent"
34        android:layout_alignParentBottom="true">
35
36        <com.android.systemui.recent.RecentsVerticalScrollView
37            android:id="@+id/recents_container"
38            android:layout_width="match_parent"
39            android:layout_height="wrap_content"
40            android:layout_marginEnd="0dp"
41            android:divider="@null"
42            android:stackFromBottom="true"
43            android:fadingEdge="vertical"
44            android:scrollbars="none"
45            android:fadingEdgeLength="@dimen/status_bar_recents_scroll_fading_edge_length"
46            android:layout_gravity="bottom|start"
47            android:clipToPadding="false"
48            android:clipChildren="false"
49            android:fitsSystemWindows="true">
50
51            <LinearLayout android:id="@+id/recents_linear_layout"
52                android:layout_width="match_parent"
53                android:layout_height="wrap_content"
54                android:orientation="vertical"
55                android:clipToPadding="false"
56                android:clipChildren="false">
57            </LinearLayout>
58
59        </com.android.systemui.recent.RecentsVerticalScrollView>
60
61    </FrameLayout>
62
63    <include layout="@layout/status_bar_no_recent_apps"
64        android:id="@+id/recents_no_apps"
65        android:layout_width="match_parent"
66        android:layout_height="match_parent"
67        android:visibility="invisible" />
68
69</com.android.systemui.recent.RecentsPanelView>
70