summaryrefslogtreecommitdiff
path: root/app/src/main/res/menu/episodes_apply_action_speeddial.xml
blob: c9bc4b4df327969a9a0db96b88c015dfc0e47ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 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_batch is the first in the xml,
         visually it will be shown at the bottom of the list of actions.
      -->
    <item android:id="@+id/delete_batch"
        android:icon="@drawable/ic_delete"
        android:title="@string/delete_episode_label"
        />
    <item android:id="@+id/download_batch"
        android:icon="@drawable/ic_download"
        android:title="@string/download_label"
        />
    <item android:id="@+id/mark_unread_batch"
        android:icon="@drawable/ic_mark_unplayed"
        android:title="@string/mark_unread_label"
        />
    <item
        android:id="@+id/mark_read_batch"
        android:icon="@drawable/ic_mark_played"
        android:title="@string/mark_read_label"
        />
    <item android:id="@+id/remove_from_queue_batch"
        android:icon="@drawable/ic_playlist_remove"
        android:title="@string/remove_from_queue_label"
        />
    <item
        android:id="@+id/add_to_queue_batch"
        android:icon="@drawable/ic_playlist"
        android:title="@string/add_to_queue_label"
        />
</menu>