1<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2006, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10**     http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<com.android.systemui.statusbar.phone.NotificationPanelView
21    xmlns:android="http://schemas.android.com/apk/res/android"
22    xmlns:systemui="http://schemas.android.com/apk/res-auto"
23    android:id="@+id/notification_panel"
24    android:layout_width="match_parent"
25    android:layout_height="match_parent"
26    android:background="@android:color/transparent" >
27
28    <FrameLayout
29        android:id="@+id/big_clock_container"
30        android:layout_width="match_parent"
31        android:layout_height="match_parent"
32        android:visibility="gone" />
33
34    <include
35        layout="@layout/keyguard_status_view"
36        android:visibility="gone" />
37
38    <com.android.systemui.statusbar.phone.NotificationsQuickSettingsContainer
39        android:layout_width="match_parent"
40        android:layout_height="match_parent"
41        android:layout_gravity="@integer/notification_panel_layout_gravity"
42        android:id="@+id/notification_container_parent"
43        android:clipToPadding="false"
44        android:clipChildren="false">
45
46        <include layout="@layout/dock_info_overlay" />
47
48        <FrameLayout
49            android:id="@+id/qs_frame"
50            android:layout="@layout/qs_panel"
51            android:layout_width="@dimen/qs_panel_width"
52            android:layout_height="match_parent"
53            android:layout_gravity="@integer/notification_panel_layout_gravity"
54            android:clipToPadding="false"
55            android:clipChildren="false"
56            systemui:viewType="com.android.systemui.plugins.qs.QS" />
57
58        <com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout
59            android:id="@+id/notification_stack_scroller"
60            android:layout_marginTop="@dimen/notification_panel_margin_top"
61            android:layout_width="@dimen/notification_panel_width"
62            android:layout_height="match_parent"
63            android:layout_gravity="@integer/notification_panel_layout_gravity"
64            android:layout_marginBottom="@dimen/close_handle_underlap" />
65
66        <include layout="@layout/ambient_indication"
67            android:id="@+id/ambient_indication_container" />
68
69        <ViewStub
70            android:id="@+id/keyguard_user_switcher"
71            android:layout="@layout/keyguard_user_switcher"
72            android:layout_height="match_parent"
73            android:layout_width="match_parent" />
74
75        <include
76            layout="@layout/keyguard_status_bar"
77            android:visibility="invisible" />
78
79        <Button
80            android:id="@+id/report_rejected_touch"
81            android:layout_width="wrap_content"
82            android:layout_height="wrap_content"
83            android:layout_marginTop="@dimen/status_bar_header_height_keyguard"
84            android:text="@string/report_rejected_touch"
85            android:visibility="gone" />
86
87    </com.android.systemui.statusbar.phone.NotificationsQuickSettingsContainer>
88
89    <include
90        layout="@layout/keyguard_bottom_area"
91        android:visibility="gone" />
92
93    <com.android.systemui.statusbar.AlphaOptimizedView
94        android:id="@+id/qs_navbar_scrim"
95        android:layout_height="96dp"
96        android:layout_width="match_parent"
97        android:layout_gravity="bottom"
98        android:visibility="invisible"
99        android:background="@drawable/qs_navbar_scrim" />
100
101</com.android.systemui.statusbar.phone.NotificationPanelView>
102