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_add_comment.xml')
-rw-r--r--app/src/main/res/layout/dialog_add_comment.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/res/layout/dialog_add_comment.xml b/app/src/main/res/layout/dialog_add_comment.xml
new file mode 100644
index 000000000..55ddc60d6
--- /dev/null
+++ b/app/src/main/res/layout/dialog_add_comment.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="@dimen/standard_margin">
+
+ <EditText
+ android:id="@+id/input"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/simple_comment"
+ android:imeOptions="actionDone"
+ android:importantForAutofill="no"
+ android:inputType="text" />
+
+</FrameLayout> \ No newline at end of file