2017-10-12 04:16:28 +00: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"
|
2021-01-12 20:15:06 +00:00
|
|
|
tools:context=".player.PlayQueueActivity">
|
2017-10-12 04:16:28 +00:00
|
|
|
|
2018-01-28 06:14:38 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_append_playlist"
|
2018-02-06 05:32:23 +00:00
|
|
|
android:icon="?attr/ic_playlist_add"
|
2018-01-22 03:32:49 +00:00
|
|
|
android:title="@string/append_playlist"
|
2018-01-28 06:14:38 +00:00
|
|
|
android:visible="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:showAsAction="ifRoom" />
|
2017-10-12 04:16:28 +00:00
|
|
|
|
2020-06-14 13:16:04 +00: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 21:52:58 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mute"
|
2020-03-25 15:23:47 +00:00
|
|
|
android:icon="?attr/ic_volume_off"
|
2020-03-02 21:52:58 +00:00
|
|
|
android:title="@string/mute"
|
|
|
|
android:visible="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:showAsAction="ifRoom" />
|
2020-03-02 21:52:58 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_settings"
|
2020-02-22 09:23:01 +00:00
|
|
|
android:orderInCategory="1"
|
|
|
|
android:title="@string/settings"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:showAsAction="never" />
|
2020-02-22 09:23:01 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_system_audio"
|
2020-02-22 09:23:01 +00:00
|
|
|
android:orderInCategory="2"
|
2017-10-12 04:16:28 +00:00
|
|
|
android:title="@string/play_queue_audio_settings"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:showAsAction="never" />
|
2018-01-04 06:53:31 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_switch_main"
|
2020-02-22 09:23:01 +00:00
|
|
|
android:orderInCategory="3"
|
2018-01-04 06:53:31 +00:00
|
|
|
android:title="@string/switch_to_main"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:showAsAction="never" />
|
2017-10-12 04:16:28 +00:00
|
|
|
</menu>
|