
Refactor styles again, this time trying to seperate the more layout-specific attributes so that layouts become more re-usable. This also updates the naming conventions of styles.
14 lines
No EOL
501 B
XML
14 lines
No EOL
501 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:id="@+id/action_queue_add"
|
|
android:title="@string/lbl_queue_add" />
|
|
<item
|
|
android:id="@+id/action_go_artist"
|
|
android:icon="@drawable/ic_artist"
|
|
android:title="@string/lbl_go_artist" />
|
|
<item
|
|
android:id="@+id/action_go_album"
|
|
android:icon="@drawable/ic_album"
|
|
android:title="@string/lbl_go_album" />
|
|
</menu> |