chromium/chrome/browser/touch_to_fill/password_manager/android/internal/java/res/layout/touch_to_fill_list_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"
    android:descendantFocusability="blocksDescendants"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="72dp"
    android:layout_marginBottom="2dp"
    android:gravity="center_vertical"
    android:orientation="horizontal">

  <ImageView
      android:id="@+id/favicon"
      android:layout_width="@dimen/touch_to_fill_favicon_size"
      android:layout_height="@dimen/touch_to_fill_favicon_size"
      android:layout_margin="@dimen/touch_to_fill_list_item_margin"
      android:importantForAccessibility="no"
      android:layout_gravity="center"/>
  <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_marginEnd="@dimen/touch_to_fill_list_item_margin"
      android:layout_marginVertical="@dimen/touch_to_fill_list_item_margin_vertical"
      android:layout_weight="1"
      android:orientation="vertical">
    <TextView
        android:id="@+id/credential_origin"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minHeight="@dimen/touch_to_fill_list_item_text_min_height"
        android:ellipsize="start"
        android:singleLine="true"
        android:textAppearance="@style/TextAppearance.TextMedium.Secondary"
        android:visibility="gone" />
    <TextView
        android:id="@+id/username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minHeight="@dimen/touch_to_fill_list_item_text_min_height"
        android:ellipsize="end"
        android:singleLine="true"
        android:textAppearance="@style/TextAppearance.TextLarge.Primary" />
    <TextView
        android:id="@+id/password_or_context"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minHeight="@dimen/touch_to_fill_list_item_text_min_height"
        android:ellipsize="end"
        android:singleLine="true"
        android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
  </LinearLayout>
</LinearLayout>