blob: 944d2e7c9a8c5bacc6e9d3b00f6833c26e149403 (
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
35
36
37
38
39
40
41
42
43
44
45
|
<?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_play"
android:title="@string/add_to_queue_label" />
<item
android:id="@+id/remove_from_inbox_batch"
android:icon="@drawable/ic_check"
android:title="@string/remove_inbox_label" />
</menu>
|