Auxio/app/src/main/res/menu/menu_nav.xml
OxygenCobalt 2dc7ba3420 Implement theme customization
Implement the ability to change the theme to auto/light/dark.
2020-11-28 16:17:54 -07:00

15 lines
No EOL
546 B
XML

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/library_fragment"
android:title="@string/label_library"
android:icon="@drawable/ic_library" />
<item
android:id="@+id/songs_fragment"
android:title="@string/label_songs"
android:icon="@drawable/ic_song" />
<item
android:id="@+id/settings_fragment"
android:title="@string/label_settings"
android:icon="@drawable/ic_settings" />
</menu>