2017-10-11 21:16:28 -07:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-01-21 19:32:49 -08:00
|
|
|
tools:context=".player.BackgroundPlayerActivity">
|
2017-10-11 21:16:28 -07:00
|
|
|
|
2018-01-27 22:14:38 -08:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_append_playlist"
|
2018-02-05 21:32:23 -08:00
|
|
|
android:icon="?attr/ic_playlist_add"
|
2018-01-21 19:32:49 -08:00
|
|
|
android:title="@string/append_playlist"
|
2018-01-27 22:14:38 -08:00
|
|
|
android:visible="true"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2017-10-11 21:16:28 -07:00
|
|
|
|
2020-06-14 15:16:04 +02:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_playback_speed"
|
|
|
|
android:title="1x"
|
|
|
|
android:tooltipText="@string/playback_speed_control"
|
|
|
|
android:visible="true"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
2020-03-02 22:52:58 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mute"
|
2020-03-25 16:23:47 +01:00
|
|
|
android:icon="?attr/ic_volume_off"
|
2020-03-02 22:52:58 +01:00
|
|
|
android:title="@string/mute"
|
|
|
|
android:visible="true"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2020-03-02 22:52:58 +01:00
|
|
|
|
2020-10-09 20:24:02 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_settings"
|
2020-02-22 10:23:01 +01:00
|
|
|
android:orderInCategory="1"
|
|
|
|
android:title="@string/settings"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="never" />
|
2020-02-22 10:23:01 +01:00
|
|
|
|
2020-10-09 20:24:02 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_system_audio"
|
2020-02-22 10:23:01 +01:00
|
|
|
android:orderInCategory="2"
|
2017-10-11 21:16:28 -07:00
|
|
|
android:title="@string/play_queue_audio_settings"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="never" />
|
2018-01-03 22:53:31 -08:00
|
|
|
|
2020-10-09 20:24:02 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_switch_main"
|
2020-02-22 10:23:01 +01:00
|
|
|
android:orderInCategory="3"
|
2018-01-03 22:53:31 -08:00
|
|
|
android:title="@string/switch_to_main"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="never" />
|
2017-10-11 21:16:28 -07:00
|
|
|
</menu>
|