blob: e1bcc2e5f86c28ff5d19d873b289991c05cd9a8d [file] [log] [blame]
Brad Stenning754f8c92018-06-19 15:03:46 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2018 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
17
18<!-- This is the combined status bar / notification panel window. -->
19<com.android.systemui.statusbar.phone.StatusBarWindowView
20 xmlns:android="http://schemas.android.com/apk/res/android"
21 xmlns:sysui="http://schemas.android.com/apk/res-auto"
22 android:layout_width="match_parent"
23 android:layout_height="match_parent"
24 android:fitsSystemWindows="true">
25
26 <com.android.systemui.statusbar.BackDropView
27 android:id="@+id/backdrop"
28 android:layout_width="match_parent"
29 android:layout_height="match_parent"
30 android:visibility="gone"
31 sysui:ignoreRightInset="true"
32 >
33 <ImageView android:id="@+id/backdrop_back"
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:scaleType="centerCrop"/>
37 <ImageView android:id="@+id/backdrop_front"
38 android:layout_width="match_parent"
39 android:layout_height="match_parent"
40 android:scaleType="centerCrop"
41 android:visibility="invisible"/>
42 </com.android.systemui.statusbar.BackDropView>
43
44 <com.android.systemui.statusbar.ScrimView
jovanaka090fe02019-09-03 19:22:41 -070045 android:id="@+id/scrim_for_bubble"
46 android:layout_width="match_parent"
47 android:layout_height="match_parent"
48 android:importantForAccessibility="no"
49 sysui:ignoreRightInset="true"
50 />
51
52 <com.android.systemui.statusbar.ScrimView
Brad Stenning754f8c92018-06-19 15:03:46 -070053 android:id="@+id/scrim_behind"
54 android:layout_width="match_parent"
55 android:layout_height="match_parent"
56 android:importantForAccessibility="no"
57 sysui:ignoreRightInset="true"
58 />
59
60 <LinearLayout
61 android:layout_width="match_parent"
62 android:layout_height="@dimen/status_bar_height"
63 android:orientation="vertical"
64 >
65 <FrameLayout
66 android:id="@+id/status_bar_container"
67 android:layout_width="match_parent"
68 android:layout_height="wrap_content"
69 android:visibility="gone"
70 />
71
72 <include layout="@layout/car_top_navigation_bar"
73 android:layout_width="match_parent"
74 android:layout_height="wrap_content"
Brad Stenning754f8c92018-06-19 15:03:46 -070075 />
76 </LinearLayout>
77
78 <include layout="@layout/brightness_mirror"/>
79
80 <ViewStub android:id="@+id/fullscreen_user_switcher_stub"
81 android:layout_width="match_parent"
82 android:layout_height="match_parent"
83 android:layout="@layout/car_fullscreen_user_switcher"/>
84
Brad Stenning2ccc2a42019-04-15 10:17:01 -070085 <include layout="@layout/notification_center_activity"
86 android:layout_width="match_parent"
87 android:layout_height="match_parent"
88 android:layout_marginBottom="@dimen/navigation_bar_height"
89 android:visibility="invisible"/>
90
91 <include layout="@layout/headsup_container"
Brad Stenning754f8c92018-06-19 15:03:46 -070092 android:layout_width="match_parent"
93 android:layout_height="match_parent"
94 android:visibility="invisible"/>
95
Brad Stenning2ccc2a42019-04-15 10:17:01 -070096 <include layout="@layout/status_bar_expanded"
97 android:layout_width="match_parent"
98 android:layout_height="match_parent"
99 android:visibility="invisible"/>
Brad Stenning3b0d7642019-03-28 11:04:30 -0700100
Brad Stenning754f8c92018-06-19 15:03:46 -0700101 <com.android.systemui.statusbar.ScrimView
102 android:id="@+id/scrim_in_front"
103 android:layout_width="match_parent"
104 android:layout_height="match_parent"
105 android:importantForAccessibility="no"
106 sysui:ignoreRightInset="true"
107 />
108
109</com.android.systemui.statusbar.phone.StatusBarWindowView>