chromium/chrome/android/features/keyboard_accessory/internal/java/res/layout/keyboard_accessory_sheet_tab_iban_info.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.
-->

<org.chromium.chrome.browser.keyboard_accessory.sheet_tabs.IbanAccessoryInfoView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:gravity="top|start"
    android:fillViewport="true"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:paddingStart="@dimen/keyboard_accessory_suggestion_padding"
    android:paddingEnd="@dimen/keyboard_accessory_suggestion_padding"
    android:layout_marginTop="@dimen/keyboard_accessory_sheet_top_margin"
    android:layout_marginBottom="@dimen/keyboard_accessory_sheet_bottom_margin"
    android:orientation="vertical">

    <LinearLayout
        android:gravity="center_vertical|start"
        android:fillViewport="true"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:orientation="horizontal">
        <org.chromium.components.browser_ui.widget.chips.ChipView
            android:id="@+id/value"
            android:gravity="center_vertical|start"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/InputChip" />
        <Space
            android:layout_weight="1"
            android:layout_height="match_parent"
            android:layout_width="0dp" />
        <ImageView
            android:id="@+id/icon"
            android:src="@drawable/iban_icon"
            android:layout_marginTop="@dimen/keyboard_accessory_image_top_padding"
            android:layout_width="@dimen/keyboard_accessory_bar_item_icon_width"
            android:layout_height="@dimen/keyboard_accessory_suggestion_icon_size"
            android:layout_weight="0"
            android:importantForAccessibility="no"
            android:layout_gravity="top|end" />
    </LinearLayout>

    <View style="@style/HorizontalDivider"
        android:layout_marginTop="@dimen/keyboard_accessory_sheet_divider_margin"
        android:layout_marginBottom="0dp" />

</org.chromium.chrome.browser.keyboard_accessory.sheet_tabs.IbanAccessoryInfoView>