chromium/chrome/browser/facilitated_payments/ui/android/internal/java/res/layout/facilitated_payments_payment_methods_sheet_footer_item.xml

<?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:id="@+id/touch_to_fill_footer_item"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:layout_marginHorizontal="@dimen/facilitated_payments_horizontal_margin"
    android:orientation="vertical">
   <!-- Divider -->
  <View style="@style/HorizontalDivider"
      android:layout_width="match_parent"
      android:layout_height="@dimen/divider_height"/>
  <TextView
      android:id="@+id/manage_payment_methods"
      android:layout_width="match_parent"
      android:layout_height="@dimen/facilitated_payments_footer_button_height"
      android:layout_marginVertical="@dimen/facilitated_payments_footer_button_margin_vertical"
      android:clickable="true"
      android:drawablePadding="@dimen/facilitated_payments_footer_drawable_padding"
      android:focusable="true"
      android:gravity="center_vertical|start"
      android:textAppearance="@style/TextAppearance.TextLarge.Primary"
      android:text="@string/autofill_bottom_sheet_manage_payment_methods"
      app:drawableStartCompat="@drawable/infobar_chrome"
      app:drawableTint="@color/default_icon_color_secondary_tint_list"
      android:background="?android:attr/selectableItemBackground"
      android:textDirection="locale"
      android:textAlignment="viewStart"/>
</LinearLayout>