
Implement a "Go to artist" option in library albums, along with removing unneeded icons to reduce the space taken up by them.
16 lines
No EOL
570 B
XML
16 lines
No EOL
570 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/label_play" />
|
|
<item
|
|
android:id="@+id/action_shuffle"
|
|
android:title="@string/label_shuffle" />
|
|
<item
|
|
android:id="@+id/action_queue_add"
|
|
android:title="@string/label_queue_add" />
|
|
<item
|
|
android:id="@+id/action_go_artist"
|
|
android:title="@string/label_go_artist" />
|
|
</menu> |