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 21<com.android.systemui.statusbar.phone.NotificationPanelView 22 xmlns:android="http://schemas.android.com/apk/res/android" 23 xmlns:systemui="http://schemas.android.com/apk/res-auto" 24 android:id="@+id/notification_panel" 25 android:layout_width="match_parent" 26 android:layout_height="match_parent" 27 android:background="@android:color/transparent"> 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 <include layout="@layout/photo_preview_overlay" /> 70 71 <ViewStub 72 android:id="@+id/keyguard_user_switcher" 73 android:layout="@layout/keyguard_user_switcher" 74 android:layout_height="match_parent" 75 android:layout_width="match_parent" /> 76 77 <include 78 layout="@layout/keyguard_status_bar" 79 android:visibility="invisible" /> 80 81 <Button 82 android:id="@+id/report_rejected_touch" 83 android:layout_width="wrap_content" 84 android:layout_height="wrap_content" 85 android:layout_marginTop="@dimen/status_bar_header_height_keyguard" 86 android:text="@string/report_rejected_touch" 87 android:visibility="gone" /> 88 89 </com.android.systemui.statusbar.phone.NotificationsQuickSettingsContainer> 90 91 <include 92 layout="@layout/keyguard_bottom_area" 93 android:visibility="gone" /> 94 95 <com.android.systemui.statusbar.AlphaOptimizedView 96 android:id="@+id/qs_navbar_scrim" 97 android:layout_height="96dp" 98 android:layout_width="match_parent" 99 android:layout_gravity="bottom" 100 android:visibility="invisible" 101 android:background="@drawable/qs_navbar_scrim" /> 102 103 <include layout="@layout/status_bar_expanded_plugin_frame"/> 104</com.android.systemui.statusbar.phone.NotificationPanelView> 105