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>2020-02-24 23:17:53 +0300
committerstefan-niedermann <info@niedermann.it>2020-02-24 23:17:53 +0300
commit68afde4e16cb47b1b3ac00ba4c064ee1c76be649 (patch)
tree464d0975adad956a6107eeff228bb3683c6decae /app/src/main/res/menu
parent457e9948c23f2468293675303ad6e15f1da15a23 (diff)
Make attachments deletable on long press
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r--app/src/main/res/menu/attachment_menu.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/src/main/res/menu/attachment_menu.xml b/app/src/main/res/menu/attachment_menu.xml
new file mode 100644
index 000000000..160cb63f8
--- /dev/null
+++ b/app/src/main/res/menu/attachment_menu.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto">
+ <item
+ android:id="@+id/delete"
+ android:title="@string/simple_delete"
+ app:showAsAction="never" />
+</menu>