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:
authorstefan-niedermann <info@niedermann.it>2019-12-06 22:41:38 +0300
committerstefan-niedermann <info@niedermann.it>2019-12-06 22:41:38 +0300
commitd4acba762c5d13a491c77ee78f7a1663e1a60758 (patch)
treed548438df054e695771e40066312d0b761b11cc1 /app/src/main/res
parent3b6aa326ab81bf2020e0c12065f65d8e6c5d088c (diff)
#207 Comments support
Implement a dialog for entering comment
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/dialog_add_comment.xml16
-rw-r--r--app/src/main/res/values/strings.xml1
2 files changed, 17 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
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 7ce38bf2e..9ac52161d 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -144,4 +144,5 @@
<string name="you_have_to_be_connected_to_the_internet_in_order_to_add_an_account">You have to be connected to the internet in order to add an account.</string>
<string name="simple_select">Select</string>
<string name="owner">Owner</string>
+ <string name="simple_comment">Comment</string>
</resources>