Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dialog_edit_title.xml « layout « res « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7d3fa5a1815bd013b1cc5a68de06fa4e2d6509e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.textfield.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/inputWrapper"
    style="@style/textInputLayoutStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="@dimen/spacer_2x">

    <EditText
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/change_note_title"
        android:importantForAutofill="no"
        android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>