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"
|
2018-01-22 04:32:49 +01:00
|
|
|
tools:context=".player.BackgroundPlayerActivity">
|
2017-10-12 06:16:28 +02:00
|
|
|
|
2018-01-28 07:14:38 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_append_playlist"
|
|
|
|
android:icon="?attr/playlist_add"
|
2018-01-22 04:32:49 +01:00
|
|
|
android:title="@string/append_playlist"
|
2018-01-28 07:14:38 +01:00
|
|
|
android:visible="true"
|
|
|
|
app:showAsAction="ifRoom"/>
|
2017-10-12 06:16:28 +02:00
|
|
|
|
|
|
|
<item android:id="@+id/action_settings"
|
|
|
|
android:orderInCategory="990"
|
|
|
|
android:title="@string/settings"
|
|
|
|
app:showAsAction="never"/>
|
|
|
|
|
|
|
|
<item android:id="@+id/action_system_audio"
|
|
|
|
android:orderInCategory="996"
|
|
|
|
android:title="@string/play_queue_audio_settings"
|
|
|
|
app:showAsAction="never"/>
|
2018-01-04 07:53:31 +01:00
|
|
|
|
|
|
|
<item android:id="@+id/action_switch_main"
|
|
|
|
android:orderInCategory="999"
|
|
|
|
android:title="@string/switch_to_main"
|
|
|
|
app:showAsAction="never"/>
|
2017-10-12 06:16:28 +02:00
|
|
|
</menu>
|