summaryrefslogtreecommitdiff
path: root/app/src/main
diff options
context:
space:
mode:
authororionlee <orionlee@yahoo.com>2019-03-20 13:28:11 -0700
committerorionlee <orionlee@yahoo.com>2019-04-02 11:47:57 -0700
commit9f854fbd3bea49be29747cf92105c9135c934904 (patch)
treec230c8ddea7d7a9b7e8272695aa120d07a0b12cc /app/src/main
parent53e25116423896e86fe219da7c90158c7c17bd8b (diff)
downloadAntennaPod-9f854fbd3bea49be29747cf92105c9135c934904.zip
fix speed dial buttons order
Diffstat (limited to 'app/src/main')
-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>