blob: 447848d27f09f1473f73b96200e1ae139fb33a3a [file] [log] [blame]
<?xml version="1.0" encoding="utf-8" ?>
<!--
~ Copyright (C) 2021 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.car.ui.FocusArea
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">
<androidx.cardview.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
app:cardCornerRadius="@dimen/notification_card_radius">
<RelativeLayout
android:id="@+id/inner_template_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/car_notification_card_inner_top_margin">
<com.android.car.notification.template.CarNotificationHeaderView
android:id="@+id/notification_header"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
app:isHeadsUp="true"/>
<com.android.car.notification.template.CarNotificationBodyView
android:id="@+id/notification_body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/notification_touch_target_size"
android:gravity="center_vertical"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
app:maxLines="@integer/config_headsUpNotificationMaxBodyLines"
app:showBigIcon="true"
app:isHeadsUp="true"/>
<FrameLayout
android:id="@+id/notification_actions_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/notification_body">
<com.android.car.notification.template.CarNotificationActionsView
android:id="@+id/notification_actions"
style="@style/NotificationActionViewLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:categoryCall="true"/>
</FrameLayout>
</RelativeLayout>
</androidx.cardview.widget.CardView>
</com.android.car.ui.FocusArea>