blob: e456984c5f362f9b1be945de5c395383ab8eaf81 [file] [log] [blame]
Dan Sandler4247a5c2014-07-23 15:58:08 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2014, 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
Chris Wren51c75102013-07-16 20:49:17 -040018<com.android.systemui.statusbar.ExpandableNotificationRow
19 xmlns:android="http://schemas.android.com/apk/res/android"
Daniel Sandler7bff7e62010-08-06 15:06:18 -040020 android:layout_width="match_parent"
Daniel Sandler6a858c32012-03-12 14:38:58 -040021 android:layout_height="wrap_content"
Jorim Jaggife40f7d2014-04-28 15:20:04 +020022 android:focusable="true"
23 android:clickable="true"
Daniel Sandler7bff7e62010-08-06 15:06:18 -040024 >
25
Mady Mellor4b80b102016-01-22 08:03:58 -080026 <ViewStub
27 android:layout="@layout/notification_settings_icon_row"
28 android:id="@+id/settings_icon_row_stub"
29 android:inflatedId="@+id/notification_settings_icon_row"
Mady Mellorf0625802016-02-11 18:03:48 -080030 android:layout_width="wrap_content"
Mady Mellor4b80b102016-01-22 08:03:58 -080031 android:layout_height="match_parent"
32 />
33
Jorim Jaggia8b48e12014-05-19 20:26:46 +020034 <com.android.systemui.statusbar.NotificationBackgroundView
35 android:id="@+id/backgroundNormal"
36 android:layout_width="match_parent"
37 android:layout_height="match_parent" />
38
39 <com.android.systemui.statusbar.NotificationBackgroundView
40 android:id="@+id/backgroundDimmed"
41 android:layout_width="match_parent"
42 android:layout_height="match_parent" />
43
Jorim Jaggibe565df2014-04-28 17:51:23 +020044 <com.android.systemui.statusbar.NotificationContentView android:id="@+id/expanded"
Jorim Jaggife40f7d2014-04-28 15:20:04 +020045 android:layout_width="match_parent"
46 android:layout_height="wrap_content" />
47
Jorim Jaggibe565df2014-04-28 17:51:23 +020048 <com.android.systemui.statusbar.NotificationContentView android:id="@+id/expandedPublic"
Chris Wren80a76272012-04-18 10:52:18 -040049 android:layout_width="match_parent"
Jorim Jaggife40f7d2014-04-28 15:20:04 +020050 android:layout_height="wrap_content" />
Chris Wren80a76272012-04-18 10:52:18 -040051
Daniel Sandler1347c302011-08-01 16:47:53 -040052 <Button
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040053 android:id="@+id/veto"
54 android:layout_width="48dp"
Selim Cinek863834b2014-05-20 04:20:25 +020055 android:layout_height="0dp"
Fabrice Di Meglio8afcd142012-07-27 18:27:11 -070056 android:gravity="end"
57 android:layout_marginEnd="-80dp"
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040058 android:background="@null"
Fabrice Di Meglio02c40c22013-03-08 14:05:28 -080059 android:paddingEnd="8dp"
60 android:paddingStart="8dp"
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040061 />
62
Jorim Jaggib1cd3c12014-09-08 19:55:17 +020063 <ViewStub
Selim Cinekb5605e52015-02-20 18:21:41 +010064 android:layout="@layout/notification_children_container"
65 android:id="@+id/child_container_stub"
66 android:inflatedId="@+id/notification_children_container"
67 android:layout_width="match_parent"
68 android:layout_height="wrap_content"
69 />
70
71 <ViewStub
Jorim Jaggib1cd3c12014-09-08 19:55:17 +020072 android:layout="@layout/notification_guts"
73 android:id="@+id/notification_guts_stub"
74 android:inflatedId="@+id/notification_guts"
Dan Sandler4247a5c2014-07-23 15:58:08 -040075 android:layout_width="match_parent"
Selim Cinekd84a5932015-12-15 11:45:36 -080076 android:layout_height="wrap_content"
Daniel Sandlerb9301c32012-08-14 15:08:24 -040077 />
78
Selim Cinek33223572016-02-19 19:32:22 -080079 <com.android.systemui.statusbar.notification.FakeShadowView
80 android:id="@+id/fake_shadow"
81 android:layout_width="match_parent"
82 android:layout_height="match_parent" />
83
Chris Wren51c75102013-07-16 20:49:17 -040084</com.android.systemui.statusbar.ExpandableNotificationRow>