This change modifies the UI displayed when the new interruption model is enabled after long pressing a notification or tapping the settings icon in the notification side menu. The text links for blocking the channel, toggling its importance, or canceling out of the dialog are replaced with buttons with icons and clearer text descriptions. Test: atest NotificationInfoTest Bug: 116622974 Change-Id: I06ead5c4da77319df3ebe4c48d863dede37bf2f4
257 lines
12 KiB
XML
257 lines
12 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2017, The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<com.android.systemui.statusbar.notification.row.NotificationInfo
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/notification_guts"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:orientation="vertical"
|
|
android:background="@color/notification_guts_bg_color">
|
|
|
|
<!-- Package Info -->
|
|
<RelativeLayout
|
|
android:id="@+id/header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@*android:dimen/notification_content_margin_start"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false">
|
|
<ImageView
|
|
android:id="@+id/pkgicon"
|
|
android:layout_width="@dimen/notification_guts_header_height"
|
|
android:layout_height="@dimen/notification_guts_header_height"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="3dp" />
|
|
<TextView
|
|
android:id="@+id/pkgname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@*android:style/TextAppearance.Material.Notification.Info"
|
|
android:layout_marginStart="3dp"
|
|
android:layout_marginEnd="2dp"
|
|
android:singleLine="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/pkgicon" />
|
|
<TextView
|
|
android:id="@+id/pkg_divider"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@*android:style/TextAppearance.Material.Notification.Info"
|
|
android:layout_marginStart="2dp"
|
|
android:layout_marginEnd="2dp"
|
|
android:text="@*android:string/notification_header_divider_symbol"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/pkgname" />
|
|
<TextView
|
|
android:id="@+id/delegate_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@*android:style/TextAppearance.Material.Notification.Info"
|
|
android:layout_marginStart="2dp"
|
|
android:layout_marginEnd="2dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/pkg_divider" />
|
|
<!-- 24 dp icon with 16 dp padding all around to mirror notification content margins -->
|
|
<ImageButton
|
|
android:id="@+id/info"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/ripple_drawable"
|
|
android:contentDescription="@string/notification_more_settings"
|
|
android:padding="16dp"
|
|
android:src="@drawable/ic_info"
|
|
android:tint="?android:attr/colorAccent" />
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/prompt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/notification_guts_button_spacing"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:orientation="vertical">
|
|
|
|
<!-- Channel Info Block -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@*android:dimen/notification_content_margin_start"
|
|
android:layout_marginEnd="@*android:dimen/notification_content_margin_start"
|
|
android:orientation="vertical">
|
|
<RelativeLayout
|
|
android:id="@+id/names"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/group_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@*android:style/TextAppearance.Material.Notification.Title"
|
|
android:layout_marginStart="2dp"
|
|
android:layout_marginEnd="2dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:layout_centerVertical="true" />
|
|
<TextView
|
|
android:id="@+id/pkg_group_divider"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@*android:style/TextAppearance.Material.Notification.Title"
|
|
android:layout_marginStart="2dp"
|
|
android:layout_marginEnd="2dp"
|
|
android:text="@*android:string/notification_header_divider_symbol"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/group_name" />
|
|
<!-- Channel Name -->
|
|
<TextView
|
|
android:id="@+id/channel_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
style="@android:style/TextAppearance.Material.Notification.Title"
|
|
android:layout_toEndOf="@id/pkg_group_divider"/>
|
|
</RelativeLayout>
|
|
<!-- Question prompt -->
|
|
<TextView
|
|
android:id="@+id/block_prompt"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@android:style/TextAppearance.Material.Notification" />
|
|
</LinearLayout>
|
|
|
|
<!-- Settings and Done buttons -->
|
|
<LinearLayout
|
|
android:id="@+id/block_or_minimize"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/notification_guts_button_spacing"
|
|
android:layout_marginStart="@dimen/notification_guts_button_side_margin"
|
|
android:layout_marginEnd="@dimen/notification_guts_button_side_margin"
|
|
android:gravity="end"
|
|
android:orientation="horizontal">
|
|
|
|
<!-- Optional link to app. Only appears if the channel is not disabled and the app
|
|
asked for it -->
|
|
<TextView
|
|
android:id="@+id/app_settings"
|
|
android:text="@string/notification_app_settings"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
<TextView
|
|
android:id="@+id/block"
|
|
android:text="@string/inline_stop_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/notification_guts_button_horizontal_spacing"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
<TextView
|
|
android:id="@+id/minimize"
|
|
android:text="@string/inline_minimize_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/notification_guts_button_horizontal_spacing"
|
|
style="@style/TextAppearance.NotificationInfo.Button" />
|
|
<TextView
|
|
android:id="@+id/keep"
|
|
android:minWidth="48dp"
|
|
android:text="@string/inline_keep_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/notification_guts_button_horizontal_spacing"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:id="@+id/interruptiveness_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/notification_guts_button_spacing"
|
|
android:layout_marginStart="@dimen/notification_guts_button_side_margin"
|
|
android:layout_marginEnd="@dimen/notification_guts_button_side_margin"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
<TextView
|
|
android:id="@+id/int_block"
|
|
android:text="@string/inline_block_button"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:drawableTop="@drawable/ic_notification_block"
|
|
android:drawableTint="?android:attr/colorAccent"
|
|
android:layout_weight="1"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
<TextView
|
|
android:id="@+id/int_silent"
|
|
android:text="@string/inline_minimize_button"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:drawableTop="@drawable/ic_notifications_silence"
|
|
android:drawableTint="?android:attr/colorAccent"
|
|
android:layout_weight="1"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
<TextView
|
|
android:id="@+id/int_alert"
|
|
android:text="@string/inline_keep_button"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:drawableTop="@drawable/ic_notifications_alert"
|
|
android:drawableTint="?android:attr/colorAccent"
|
|
android:layout_weight="1"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<com.android.systemui.statusbar.notification.row.NotificationUndoLayout
|
|
android:id="@+id/confirmation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:orientation="horizontal" >
|
|
<TextView
|
|
android:id="@+id/confirmation_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start|center_vertical"
|
|
android:layout_marginStart="@*android:dimen/notification_content_margin_start"
|
|
android:layout_marginEnd="@*android:dimen/notification_content_margin_start"
|
|
android:text="@string/notification_channel_disabled"
|
|
style="@style/TextAppearance.NotificationInfo.Confirmation"/>
|
|
<TextView
|
|
android:id="@+id/undo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/notification_guts_button_spacing"
|
|
android:layout_marginBottom="@dimen/notification_guts_button_spacing"
|
|
android:layout_marginStart="@dimen/notification_guts_button_side_margin"
|
|
android:layout_marginEnd="@dimen/notification_guts_button_side_margin"
|
|
android:layout_gravity="end|center_vertical"
|
|
android:text="@string/inline_undo"
|
|
style="@style/TextAppearance.NotificationInfo.Button"/>
|
|
</com.android.systemui.statusbar.notification.row.NotificationUndoLayout>
|
|
</com.android.systemui.statusbar.notification.row.NotificationInfo>
|