<?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.
-->
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<!-- IBAN value -->
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/iban_value_label"
android:labelFor="@+id/iban_value_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/pref_autofill_field_large_top_margin"
android:layout_marginBottom="@dimen/pref_autofill_field_bottom_margin"
app:errorTextAppearance="@style/TextAppearance.ErrorCaption">
<EditText
tools:ignore="Autofill,LabelFor"
android:id="@+id/iban_value_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/min_touch_target_size"
android:imeOptions="flagNoExtractUi"
android:inputType="text"
android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 "
android:hint="@string/autofill_iban_editor_value" />
</com.google.android.material.textfield.TextInputLayout>
<!-- Nickname -->
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/iban_nickname_label"
android:labelFor="@+id/iban_nickname_edit"
app:counterMaxLength="25"
app:errorEnabled="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/pref_autofill_field_extra_large_top_margin"
android:layout_marginBottom="@dimen/pref_autofill_field_bottom_margin">
<EditText
tools:ignore="Autofill,LabelFor"
android:id="@+id/iban_nickname_edit"
android:maxLength="25"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/min_touch_target_size"
android:imeOptions="flagNoExtractUi"
android:inputType="textCapWords"
android:hint="@string/autofill_iban_editor_nickname" />
</com.google.android.material.textfield.TextInputLayout>
<TextView
android:id="@+id/iban_local_save_footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/local_iban_footer_start_margin"
android:layout_marginTop="@dimen/local_iban_footer_top_margin"
android:text="@string/autofill_iban_editor_local_save_footer" />
</merge>