2017-10-12 06:16:28 +02: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 21:15:06 +01:00
|
|
|
tools:context=".player.PlayQueueActivity">
|
2017-10-12 06:16:28 +02:00
|
|
|
|
2018-01-28 07:14:38 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_append_playlist"
|
2021-03-27 15:45:49 +01:00
|
|
|
android:icon="@drawable/ic_playlist_add"
|
2021-10-03 13:27:24 +02:00
|
|
|
android:title="@string/add_to_playlist"
|
2018-01-28 07:14:38 +01:00
|
|
|
android:visible="true"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2017-10-12 06:16:28 +02: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" />
|
|
|
|
|
2023-03-19 01:15:36 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_audio_track"
|
|
|
|
android:tooltipText="@string/audio_track"
|
|
|
|
android:visible="false"
|
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu />
|
|
|
|
</item>
|
|
|
|
|
2020-03-02 22:52:58 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mute"
|
2021-03-27 15:45:49 +01:00
|
|
|
android:icon="@drawable/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-12 06:16:28 +02:00
|
|
|
android:title="@string/play_queue_audio_settings"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="never" />
|
2018-01-04 07:53:31 +01: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-04 07:53:31 +01:00
|
|
|
android:title="@string/switch_to_main"
|
2020-10-09 20:24:02 +02:00
|
|
|
app:showAsAction="never" />
|
2017-10-12 06:16:28 +02:00
|
|
|
</menu>
|