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-09-16 18:47:54 +0300
committerstefan-niedermann <info@niedermann.it>2019-09-16 18:47:54 +0300
commit4709b11353f66eaec86d7855d1c975d9c5f88300 (patch)
tree811c0583f0ef9d301a84d462d3e8b0d9c02c770d /app/src/main/res/menu
parentf2ad0b1e2b73345bc28a0ab772bd6be564d4c711 (diff)
Implement explicit save and dismiss buttons for edit
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r--app/src/main/res/menu/card_edit_menu.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/src/main/res/menu/card_edit_menu.xml b/app/src/main/res/menu/card_edit_menu.xml
new file mode 100644
index 000000000..e01fffd6f
--- /dev/null
+++ b/app/src/main/res/menu/card_edit_menu.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item
+ android:id="@+id/action_card_save"
+ android:title="@string/simple_save"
+ android:icon="@drawable/ic_check_white_24dp"
+ app:showAsAction="always" />
+</menu> \ No newline at end of file