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

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/dialog_edit_title.xml')
-rw-r--r--app/src/main/res/layout/dialog_edit_title.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/res/layout/dialog_edit_title.xml b/app/src/main/res/layout/dialog_edit_title.xml
new file mode 100644
index 00000000..805926bd
--- /dev/null
+++ b/app/src/main/res/layout/dialog_edit_title.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<com.google.android.material.textfield.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="16dp">
+
+ <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> \ No newline at end of file