
Add a failsafe to the persistence system that allows the parent of a playback state to be restored from the queue.
14 lines
No EOL
514 B
XML
14 lines
No EOL
514 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<item
|
|
android:id="@+id/action_shuffle"
|
|
android:icon="@drawable/ic_shuffle"
|
|
android:title="@string/label_shuffle"
|
|
app:showAsAction="ifRoom" />
|
|
<item
|
|
android:id="@+id/action_play"
|
|
android:title="@string/label_play"
|
|
android:icon="@drawable/ic_play"
|
|
app:showAsAction="never" />
|
|
</menu> |