146 lines
6.3 KiB
XML
146 lines
6.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2018 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.
|
|
-->
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/expanded_group_header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/notification_card_margin_horizontal"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layoutDirection="locale">
|
|
|
|
<TextView
|
|
android:id="@+id/expanded_group_header_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="@dimen/expanded_package_name_margin"
|
|
android:gravity="center_vertical"
|
|
android:textDirection="locale"
|
|
android:textAlignment="gravity"
|
|
android:focusable="false"
|
|
style="@style/ExpandedGroupNotificationHeaderText"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/expanded_group_header_toggle_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/notification_card_header_height"
|
|
android:layout_marginEnd="@dimen/card_end_margin"
|
|
android:src="@drawable/expand_less"
|
|
android:focusable="false"
|
|
android:tint="@color/icon_tint"/>
|
|
</LinearLayout>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/card_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginEnd="@dimen/notification_card_margin_horizontal"
|
|
android:layout_marginStart="@dimen/notification_card_margin_horizontal"
|
|
app:cardBackgroundColor="?android:attr/colorPrimary"
|
|
app:cardCornerRadius="@dimen/notification_card_radius">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.android.car.notification.template.CarNotificationHeaderView
|
|
android:id="@+id/group_header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/notification_card_header_height"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginBottom="@dimen/card_header_margin_bottom"
|
|
android:layout_toStartOf="@+id/group_toggle_button"
|
|
android:paddingStart="@dimen/card_start_margin"
|
|
android:gravity="center_vertical"/>
|
|
|
|
<View
|
|
android:id="@+id/header_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/notification_list_divider_height"
|
|
android:layout_below="@id/group_header"
|
|
android:background="@color/notification_list_divider_color"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/group_toggle_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/notification_card_header_height"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginEnd="@dimen/card_end_margin"
|
|
android:focusable="false"
|
|
android:tint="@color/icon_tint"/>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/notification_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/header_divider"
|
|
android:background="@color/group_notification_background_color"/>
|
|
|
|
<View
|
|
android:id="@+id/footer_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/notification_list_divider_height"
|
|
android:layout_below="@id/notification_list"
|
|
android:background="@color/notification_list_divider_color"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/expansion_footer_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/footer_divider">
|
|
|
|
<TextView
|
|
android:id="@+id/expansion_footer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/notification_card_footer_height"
|
|
android:layout_marginEnd="@dimen/card_end_margin"
|
|
android:layout_marginStart="@dimen/card_start_margin"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:textDirection="locale"
|
|
android:textAlignment="gravity"
|
|
style="@style/GroupNotificationFooterText"/>
|
|
|
|
<include
|
|
layout="@layout/dismiss_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"/>
|
|
|
|
</FrameLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
<!-- This view intercepts all clicks on the card in the collapsed state -->
|
|
<View
|
|
android:id="@+id/touch_interceptor_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:focusable="false"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</LinearLayout>
|