2016-03-08 15:22:45 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<group android:id="@+id/group_feature"
|
|
|
|
android:checkableBehavior="single">
|
|
|
|
<item
|
|
|
|
android:checked="true"
|
|
|
|
android:id="@+id/nav_drawer_library"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:icon="@drawable/ic_book_black_24dp"
|
2016-03-08 15:22:45 -05:00
|
|
|
android:title="@string/label_library" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/nav_drawer_recent_updates"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:icon="@drawable/ic_history_black_24dp"
|
2016-03-08 15:22:45 -05:00
|
|
|
android:title="@string/label_recent_updates" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/nav_drawer_catalogues"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:icon="@drawable/ic_explore_black_24dp"
|
2016-03-08 15:22:45 -05:00
|
|
|
android:title="@string/label_catalogues" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/nav_drawer_downloads"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:icon="@drawable/ic_file_download_black_24dp"
|
2016-03-08 15:22:45 -05:00
|
|
|
android:title="@string/label_download_queue" />
|
|
|
|
</group>
|
|
|
|
<group android:id="@+id/group_settings"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:checkableBehavior="none">
|
2016-03-08 15:22:45 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/nav_drawer_settings"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:icon="@drawable/ic_settings_black_24dp"
|
2016-03-08 15:22:45 -05:00
|
|
|
android:title="@string/label_settings" />
|
|
|
|
</group>
|
|
|
|
</menu>
|