2020-02-01 10:29:26 +01:00
|
|
|
<?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">
|
|
|
|
<group android:id="@+id/group_feature">
|
|
|
|
<item
|
|
|
|
android:checked="true"
|
2020-02-11 04:46:32 +01:00
|
|
|
android:id="@+id/nav_library"
|
2020-02-01 10:29:26 +01:00
|
|
|
android:icon="@drawable/ic_book_black_24dp"
|
|
|
|
android:title="@string/pref_category_library" />
|
|
|
|
<item
|
2020-02-11 04:46:32 +01:00
|
|
|
android:id="@+id/nav_recents"
|
2020-02-01 10:29:26 +01:00
|
|
|
android:icon="@drawable/ic_update_black_24dp"
|
2020-02-05 04:01:17 +01:00
|
|
|
android:title="@string/short_recents" />
|
2020-02-01 10:29:26 +01:00
|
|
|
<item
|
2020-02-11 04:46:32 +01:00
|
|
|
android:id="@+id/nav_catalogues"
|
2020-02-01 10:29:26 +01:00
|
|
|
android:icon="@drawable/ic_explore_black_24dp"
|
|
|
|
android:title="@string/short_catalogues" />
|
|
|
|
<item
|
2020-02-11 04:46:32 +01:00
|
|
|
android:id="@+id/nav_settings"
|
2020-02-01 10:29:26 +01:00
|
|
|
android:icon="@drawable/ic_settings_black_24dp"
|
|
|
|
android:title="@string/label_settings"
|
|
|
|
android:checkable="false" />
|
|
|
|
</group>
|
|
|
|
</menu>
|