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 <include 29 layout="@layout/keyguard_status_view" 30 android:visibility="gone" /> 31 32 <com.android.systemui.statusbar.phone.NotificationsQuickSettingsContainer 33 android:layout_width="match_parent" 34 android:layout_height="match_parent" 35 android:layout_gravity="@integer/notification_panel_layout_gravity" 36 android:id="@+id/notification_container_parent" 37 android:clipToPadding="false" 38 android:clipChildren="false"> 39 40 <FrameLayout 41 android:id="@+id/qs_frame" 42 android:layout="@layout/qs_panel" 43 android:layout_width="@dimen/qs_panel_width" 44 android:layout_height="match_parent" 45 android:layout_gravity="@integer/notification_panel_layout_gravity" 46 android:clipToPadding="false" 47 android:clipChildren="false" 48 systemui:viewType="com.android.systemui.plugins.qs.QS" /> 49 50 <com.android.systemui.statusbar.stack.NotificationStackScrollLayout 51 android:id="@+id/notification_stack_scroller" 52 android:layout_marginTop="@dimen/notification_panel_margin_top" 53 android:layout_width="@dimen/notification_panel_width" 54 android:layout_height="match_parent" 55 android:layout_gravity="@integer/notification_panel_layout_gravity" 56 android:layout_marginBottom="@dimen/close_handle_underlap" /> 57 58 <include layout="@layout/ambient_indication" 59 android:id="@+id/ambient_indication_container" /> 60 61 <ViewStub 62 android:id="@+id/keyguard_user_switcher" 63 android:layout="@layout/keyguard_user_switcher" 64 android:layout_height="match_parent" 65 android:layout_width="match_parent" /> 66 67 <include 68 layout="@layout/keyguard_status_bar" 69 android:visibility="invisible" /> 70 71 <Button 72 android:id="@+id/report_rejected_touch" 73 android:layout_width="wrap_content" 74 android:layout_height="wrap_content" 75 android:layout_marginTop="@dimen/status_bar_header_height_keyguard" 76 android:text="@string/report_rejected_touch" 77 android:visibility="gone" /> 78 79 </com.android.systemui.statusbar.phone.NotificationsQuickSettingsContainer> 80 81 <include 82 layout="@layout/keyguard_bottom_area" 83 android:visibility="gone" /> 84 85 <com.android.systemui.statusbar.AlphaOptimizedView 86 android:id="@+id/qs_navbar_scrim" 87 android:layout_height="96dp" 88 android:layout_width="match_parent" 89 android:layout_gravity="bottom" 90 android:visibility="invisible" 91 android:background="@drawable/qs_navbar_scrim" /> 92 93</com.android.systemui.statusbar.phone.NotificationPanelView> 94