2015-09-30 19:03:11 +02:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-12-04 20:22:12 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context=".MainActivity">
|
2015-12-28 01:13:52 +01:00
|
|
|
|
2016-07-28 01:01:56 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
|
|
|
android:title="@string/action_search"
|
|
|
|
app:actionViewClass="android.support.v7.widget.SearchView"
|
|
|
|
app:showAsAction="collapseActionView|ifRoom"/>
|
|
|
|
|
2016-03-03 23:56:57 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter"
|
2016-03-08 00:35:28 +01:00
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
2016-07-28 01:01:56 +02:00
|
|
|
android:title="@string/action_filter"
|
2016-03-03 23:56:57 +01:00
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter_downloaded"
|
|
|
|
android:checkable="true"
|
|
|
|
android:title="@string/action_filter_downloaded"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter_unread"
|
|
|
|
android:checkable="true"
|
|
|
|
android:title="@string/action_filter_unread"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter_empty"
|
|
|
|
android:title="@string/action_filter_empty"/>
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2016-12-04 20:22:12 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_sort"
|
|
|
|
android:icon="@drawable/ic_sort_white_24dp"
|
|
|
|
android:title="@string/action_sort"
|
|
|
|
app:showAsAction="never"
|
|
|
|
>
|
|
|
|
<menu>
|
|
|
|
<group
|
|
|
|
android:id="@+id/sort_group"
|
|
|
|
android:checkableBehavior="single">
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_sort_alpha"
|
|
|
|
android:title="@string/action_sort_alpha"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_sort_last_read"
|
|
|
|
android:title="@string/action_sort_last_read"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_sort_last_updated"
|
|
|
|
android:title="@string/action_sort_last_updated"/>
|
|
|
|
</group>
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2015-09-30 19:03:11 +02:00
|
|
|
<item
|
2016-05-05 00:37:03 +02:00
|
|
|
android:id="@+id/action_update_library"
|
2016-03-06 18:18:09 +01:00
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
2016-07-28 01:01:56 +02:00
|
|
|
android:title="@string/action_update_library"
|
2016-12-04 20:22:12 +01:00
|
|
|
app:showAsAction="ifRoom"/>
|
2015-12-28 01:13:52 +01:00
|
|
|
|
2016-07-28 01:01:56 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_library_display_mode"
|
|
|
|
android:title="@string/action_display_mode"
|
|
|
|
app:showAsAction="never"/>
|
|
|
|
|
2015-12-28 01:13:52 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_edit_categories"
|
|
|
|
android:title="@string/action_edit_categories"
|
2016-12-04 20:22:12 +01:00
|
|
|
app:showAsAction="never"/>
|
2015-12-28 01:13:52 +01:00
|
|
|
|
2015-09-30 19:03:11 +02:00
|
|
|
</menu>
|