blob: 72294ccba3e8905fb46cdf7ec59961c527e68ca8 [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.
-->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@*android:id/buttonPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollIndicators="top|bottom"
android:fillViewport="true"
style="?android:attr/buttonBarStyle">
<com.android.internal.widget.ButtonBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="locale"
android:layout_marginTop="@dimen/car_alert_dialog_margin"
android:layout_marginLeft="@dimen/car_alert_dialog_margin"
android:layout_marginRight="@dimen/car_alert_dialog_margin"
android:orientation="horizontal"
android:gravity="center">
<Button
android:id="@android:id/button3"
android:background="@drawable/car_dialog_button_background"
android:layout_width="wrap_content"
android:layout_height="@dimen/button_layout_height"
android:layout_marginRight="@dimen/car_alert_dialog_button_margin"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/alert_dialog_message_text_color"/>
<Button
android:id="@android:id/button2"
android:background="@drawable/car_dialog_button_background"
android:layout_width="wrap_content"
android:layout_height="@dimen/button_layout_height"
android:layout_marginRight="@dimen/car_alert_dialog_button_margin"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/alert_dialog_message_text_color"/>
<Button
android:id="@android:id/button1"
android:background="@drawable/car_dialog_button_background"
android:layout_width="wrap_content"
android:layout_height="@dimen/button_layout_height"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/alert_dialog_message_text_color"/>
<Space
android:id="@*android:id/spacer"
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="gone" />
</com.android.internal.widget.ButtonBarLayout>
</ScrollView>