<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2023 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<ScrollView
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"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.appcompat.widget.DialogTitle
android:id="@+id/dialog_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:layout_marginBottom="16dp"
android:layout_marginHorizontal="@dimen/add_new_folder_dialog_horizontal_margin"
android:text="@string/create_new_folder"
android:textAppearance="@style/TextAppearance.Headline.Primary" />
<org.chromium.chrome.browser.bookmarks.BookmarkTextInputLayout
android:id="@+id/folder_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/add_new_folder_dialog_horizontal_margin"
android:layout_marginVertical="8dp"
android:hint="@string/title"
app:emptyErrorMessage="@string/bookmark_missing_title">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="flagNoExtractUi"
android:inputType="textCapSentences|textAutoCorrect" />
</org.chromium.chrome.browser.bookmarks.BookmarkTextInputLayout>
</LinearLayout>
</ScrollView>