[fenix] For https://github.com/mozilla-mobile/fenix/issues/10163 - Adds tab multisele...
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / name_collection_dialog.xml
blobf587cfb235beb5539bdbd8ed7b3cdb8455f38d42
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3    - License, v. 2.0. If a copy of the MPL was not distributed with this
4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6     android:layout_width="match_parent"
7     android:layout_height="wrap_content"
8     android:orientation="vertical">
10     <TextView
11         android:id="@+id/name_header"
12         android:layout_width="match_parent"
13         android:layout_height="wrap_content"
14         android:layout_marginStart="26dp"
15         android:layout_marginTop="16dp"
16         android:layout_marginEnd="24dp"
17         android:text="@string/tab_tray_add_new_collection_name"
18         android:textAllCaps="true"
19         android:textAppearance="@style/Body16TextStyle"
20         android:textColor="?secondaryText" />
22     <EditText
23         android:id="@+id/collection_name"
24         android:layout_width="match_parent"
25         android:layout_height="wrap_content"
26         android:layout_marginStart="24dp"
27         android:layout_marginEnd="24dp"
28         android:backgroundTint="?neutral"
29         android:inputType="text"
30         android:singleLine="true"
31         android:textAlignment="viewStart" />
32 </LinearLayout>