chromium/chrome/browser/touch_to_fill/autofill/android/internal/java/res/layout/touch_to_fill_payment_method_header_item.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2022 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:layout_marginHorizontal="8dp"
    android:layout_marginBottom="16dp"
    android:orientation="vertical">

  <ImageView
      android:id="@+id/branding_icon"
      android:layout_width="wrap_content"
      android:layout_height="@dimen/ttf_for_payments_product_icon_height"
      android:layout_marginVertical="@dimen/ttf_for_payments_product_icon_margin_vertical"
      android:importantForAccessibility="no"
      android:layout_gravity="center_horizontal"/>

    <androidx.appcompat.widget.DialogTitle
        android:id="@+id/touch_to_fill_sheet_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:textAlignment="center"
        android:textAppearance="@style/TextAppearance.AlertDialogTitleStyle"
        android:text="@string/autofill_payment_method_bottom_sheet_title"/>
</LinearLayout>