2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_play_next"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:icon="@drawable/ic_redo"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:title="@string/action_play_next"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_add_to_current_playing"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:icon="@drawable/ic_library_add"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:title="@string/action_add_to_playing_queue"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_add_to_playlist"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:icon="@drawable/ic_playlist_add"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:title="@string/action_add_to_playlist"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_delete_from_device"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:icon="@drawable/ic_delete"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:title="@string/action_delete_from_device"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@id/action_multi_select_adapter_check_all"
|
2020-07-19 21:00:30 +00:00
|
|
|
android:icon="@drawable/ic_select_all"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:title="@string/select_all"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
</menu>
|