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.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/app/src/main/res/layout/dialog_edit_title.xml b/app/src/main/res/layout/dialog_edit_title.xml
index b7d3fa5a..5e744c99 100644
--- a/app/src/main/res/layout/dialog_edit_title.xml
+++ b/app/src/main/res/layout/dialog_edit_title.xml
@@ -4,13 +4,18 @@
style="@style/textInputLayoutStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:padding="@dimen/spacer_2x">
+ android:hint="@string/change_note_title"
+ android:padding="?attr/dialogPreferredPadding">
- <EditText
+ <com.google.android.material.textfield.TextInputEditText
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:hint="@string/change_note_title"
+ android:imeOptions="actionDone"
android:importantForAutofill="no"
- android:inputType="text" />
+ android:inputType="text">
+
+ <requestFocus />
+ </com.google.android.material.textfield.TextInputEditText>
+
</com.google.android.material.textfield.TextInputLayout> \ No newline at end of file