Switch auxio to a single-queue system. "Play next" adds songs to the top of the queue, similar to before, and then "Add to queue" adds songs to the bottom of the queue. This enables many more enhancements to be made to the playback experience, at the cost of a feature I preferred. Resolves #44.
18 lines
No EOL
628 B
XML
18 lines
No EOL
628 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_play"
|
|
android:title="@string/lbl_play"
|
|
app:showAsAction="never" />
|
|
<item
|
|
android:id="@+id/action_shuffle"
|
|
android:title="@string/lbl_shuffle"
|
|
app:showAsAction="never" />
|
|
<item
|
|
android:id="@+id/action_play_next"
|
|
android:title="@string/lbl_play_next" />
|
|
<item
|
|
android:id="@+id/action_queue_add"
|
|
android:title="@string/lbl_queue_add" />
|
|
</menu> |