tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

name_collection_dialog.xml (1428B)


      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">
      9 
     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="?attr/textSecondary" />
     21 
     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:autofillHints="false"
     29        android:backgroundTint="?attr/colorOutlineVariant"
     30        android:hint="@string/collection_name_hint"
     31        android:inputType="textCapSentences"
     32        android:singleLine="true"
     33        android:textAlignment="viewStart" />
     34 </LinearLayout>