<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginVertical="@dimen/account_selection_button_mode_sheet_icon_padding"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/header_idp_icon"
android:layout_width="@dimen/account_selection_button_mode_sheet_icon_size"
android:layout_height="@dimen/account_selection_button_mode_sheet_icon_size"
android:visibility="gone"
android:focusable="false"
android:importantForAccessibility="no" />
<ImageView
android:id="@+id/arrow_range_icon"
android:src="@drawable/arrow_range"
android:layout_width="@dimen/account_selection_button_mode_sheet_arrow_range_icon_size"
android:layout_height="@dimen/account_selection_button_mode_sheet_arrow_range_icon_size"
android:layout_marginHorizontal="@dimen/account_selection_button_mode_sheet_icon_padding"
android:visibility="gone"
android:fillColor="@color/baseline_neutral_variant_50"
android:focusable="false"
android:importantForAccessibility="no" />
<ImageView
android:id="@+id/header_rp_icon"
android:layout_width="@dimen/account_selection_button_mode_sheet_icon_size"
android:layout_height="@dimen/account_selection_button_mode_sheet_icon_size"
android:visibility="gone"
android:focusable="false"
android:importantForAccessibility="no" />
</LinearLayout>
<LinearLayout
android:id="@+id/header"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:gravity="center"
android:focusable="true"
android:orientation="vertical">
<TextView
android:id="@+id/header_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginVertical="@dimen/account_selection_button_mode_sheet_title_padding"
android:textAlignment="center"
android:textAppearance="@style/TextAppearance.Headline.Primary"
android:focusable="true"
android:importantForAccessibility="yes" />
<TextView
android:id="@+id/header_subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="@dimen/account_selection_button_mode_sheet_item_padding"
android:textAlignment="center"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary"
android:focusable="true"
android:importantForAccessibility="yes" />
</LinearLayout>
</LinearLayout>