mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
-Added UI to create playlist from service player activity. -Added state saving to playlist dialogs. -Removed access to history activity on service player activity. -Made StreamEntity serializable.
25 lines
914 B
XML
25 lines
914 B
XML
<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"
|
|
tools:context=".player.BackgroundPlayerActivity">
|
|
|
|
<item android:id="@+id/action_append_playlist"
|
|
android:orderInCategory="981"
|
|
android:title="@string/append_playlist"
|
|
app:showAsAction="never"/>
|
|
|
|
<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"/>
|
|
|
|
<item android:id="@+id/action_switch_main"
|
|
android:orderInCategory="999"
|
|
android:title="@string/switch_to_main"
|
|
app:showAsAction="never"/>
|
|
</menu>
|