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

github.com/stefan-niedermann/nextcloud-deck.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_stack_create.xml')
-rw-r--r--app/src/main/res/layout/dialog_stack_create.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/res/layout/dialog_stack_create.xml b/app/src/main/res/layout/dialog_stack_create.xml
index 2f8a273b4..8c14e4177 100644
--- a/app/src/main/res/layout/dialog_stack_create.xml
+++ b/app/src/main/res/layout/dialog_stack_create.xml
@@ -1,16 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<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:hint="@string/simple_title"
+ android:labelFor="@id/input"
android:padding="?attr/dialogPreferredPadding">
<EditText
android:id="@+id/input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:hint="@string/simple_title"
android:imeOptions="actionDone"
android:importantForAutofill="no"
android:inputType="text" />
-
-</FrameLayout> \ No newline at end of file
+</com.google.android.material.textfield.TextInputLayout> \ No newline at end of file