fix speed dial buttons order

This commit is contained in:
orionlee 2019-03-20 13:28:11 -07:00
parent 53e2511642
commit 9f854fbd3b

View File

@ -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/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/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>