2020-02-01 01:29:26 -08: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-10 19:46:32 -08:00
|
|
|
android:id="@+id/nav_library"
|
2020-03-15 22:21:14 -07:00
|
|
|
android:icon="@drawable/library_selector_24dp"
|
2020-02-10 22:40:38 -08:00
|
|
|
android:title="@string/label_library" />
|
2020-02-01 01:29:26 -08:00
|
|
|
<item
|
2020-02-10 19:46:32 -08:00
|
|
|
android:id="@+id/nav_recents"
|
2020-03-15 22:21:14 -07:00
|
|
|
android:icon="@drawable/recent_updates_selector_24dp"
|
2020-02-04 19:01:17 -08:00
|
|
|
android:title="@string/short_recents" />
|
2020-02-01 01:29:26 -08:00
|
|
|
<item
|
2020-02-10 19:46:32 -08:00
|
|
|
android:id="@+id/nav_catalogues"
|
2020-03-15 22:21:14 -07:00
|
|
|
android:icon="@drawable/browse_selector_24dp"
|
2020-02-01 01:29:26 -08:00
|
|
|
android:title="@string/short_catalogues" />
|
|
|
|
</group>
|
|
|
|
</menu>
|