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/menu/attachment_picker_menu.xml')
-rw-r--r--app/src/main/res/menu/attachment_picker_menu.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/menu/attachment_picker_menu.xml b/app/src/main/res/menu/attachment_picker_menu.xml
new file mode 100644
index 000000000..f280ac752
--- /dev/null
+++ b/app/src/main/res/menu/attachment_picker_menu.xml
@@ -0,0 +1,19 @@
+<?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/gallery"
+ android:icon="@drawable/ic_baseline_photo_camera_24"
+ android:title="@string/gallery"
+ app:showAsAction="ifRoom" />
+ <item
+ android:id="@+id/contacts"
+ android:icon="@drawable/ic_person_grey600_24dp"
+ android:title="@string/contacts"
+ app:showAsAction="ifRoom" />
+ <item
+ android:id="@+id/files"
+ android:icon="@drawable/ic_attach_file_grey600_24dp"
+ android:title="@string/files"
+ app:showAsAction="ifRoom" />
+</menu>