
Bit of a megapatch that: - Adds dedicated play, shuffle, and view items to all item menus (songs haven't been fully implemented yet) - Adds icons to all item menus - Re-adds enabled/disabled items to menus - Makes menu action naming conventions more consistent with the rest of the app
18 lines
No EOL
630 B
XML
18 lines
No EOL
630 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<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" />
|
|
<item
|
|
android:id="@+id/action_artist_details"
|
|
android:title="@string/lbl_artist_details" />
|
|
<item
|
|
android:id="@+id/action_playlist_add"
|
|
android:title="@string/lbl_playlist_add" />
|
|
<item
|
|
android:id="@+id/action_share"
|
|
android:title="@string/lbl_share" />
|
|
</menu> |