summaryrefslogtreecommitdiff
path: root/app/src/main/res/menu/episodes_apply_action_speeddial.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/menu/episodes_apply_action_speeddial.xml')
-rw-r--r--app/src/main/res/menu/episodes_apply_action_speeddial.xml40
1 files changed, 22 insertions, 18 deletions
diff --git a/app/src/main/res/menu/episodes_apply_action_speeddial.xml b/app/src/main/res/menu/episodes_apply_action_speeddial.xml
index 09c05695f..54f3184ef 100644
--- a/app/src/main/res/menu/episodes_apply_action_speeddial.xml
+++ b/app/src/main/res/menu/episodes_apply_action_speeddial.xml
@@ -1,30 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item
- android:id="@+id/addToQueue"
- android:icon="?attr/content_new"
- android:title="@string/add_to_queue_label"
+ <!-- the order is opposite of the typical menu:
+ catered to FAB speed dial, which somehow shows the item in reverse.
+ E.g., item @id/delete is the first in the xml,
+ visually it will be shown at the bottom of the list of actions.
+ -->
+ <item android:id="@+id/delete"
+ android:icon="?attr/content_discard"
+ android:title="@string/remove_episode_lable"
/>
- <item android:id="@+id/remove_from_queue_item"
- android:icon="@drawable/ic_remove_grey600"
- android:title="@string/remove_from_queue_label"
+ <item android:id="@+id/download"
+ android:icon="?attr/av_download"
+ android:title="@string/download_label"
+ />
+ <item android:id="@+id/markAsUnplayed"
+ android:icon="?attr/navigation_cancel"
+ android:title="@string/mark_unread_label"
/>
<item
android:id="@+id/markAsPlayed"
android:icon="?attr/navigation_accept"
android:title="@string/mark_read_label"
/>
- <item android:id="@+id/markAsUnplayed"
- android:icon="?attr/navigation_cancel"
- android:title="@string/mark_unread_label"
- />
- <item android:id="@+id/download"
- android:icon="?attr/av_download"
- android:title="@string/download_label"
+ <item android:id="@+id/remove_from_queue_item"
+ android:icon="@drawable/ic_remove_grey600"
+ android:title="@string/remove_from_queue_label"
/>
- <item android:id="@+id/delete"
- android:icon="?attr/content_discard"
- android:title="@string/remove_episode_lable"
+ <item
+ android:id="@+id/addToQueue"
+ android:icon="?attr/content_new"
+ android:title="@string/add_to_queue_label"
/>
</menu>