blob: 3e08602af79c49c2808d1a48819c90ace59838b9 [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.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@*android:id/topPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="vertical">
<!-- If the client uses a customTitle, it will be added here. -->
<RelativeLayout
android:id="@*android:id/title_template"
android:layout_width="match_parent"
android:layout_height="@dimen/car_card_header_height"
android:orientation="horizontal">
<ImageView
android:id="@android:id/icon"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:scaleType="fitCenter"
android:src="@null" />
<com.android.internal.widget.DialogTitle
android:id="@*android:id/alertTitle"
android:maxLines="1"
android:ellipsize="none"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toEndOf="@+id/icon"
android:textAlignment="viewStart"
android:textColor="@color/alert_dialog_message_text_color"
android:layout_centerVertical="true"/>
</RelativeLayout>
<Space
android:id="@*android:id/titleDividerNoCustom"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="0dp" />
</LinearLayout>