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"
|
2019-10-29 06:51:46 +01:00
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
2016-07-28 01:01:56 +02:00
|
|
|
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-12-11 12:43:44 +01:00
|
|
|
app:showAsAction="ifRoom"/>
|
2016-12-04 20:22:12 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
<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
|
|
|
|
2018-01-12 22:02:05 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_source_migration"
|
2018-02-22 11:31:22 +01:00
|
|
|
android:title="@string/label_migration"
|
2018-01-12 22:02:05 +01:00
|
|
|
app:showAsAction="never"/>
|
|
|
|
|
2020-01-06 08:04:29 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_reorganize"
|
2020-01-15 06:29:32 +01:00
|
|
|
android:title="@string/action_sort_by"
|
2020-01-06 08:04:29 +01:00
|
|
|
app:showAsAction="never">
|
|
|
|
<menu>
|
2020-01-15 06:29:32 +01:00
|
|
|
<group android:id="@+id/reorder_group"
|
|
|
|
android:checkableBehavior="single">
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_alpha_asc"
|
2020-01-15 10:34:00 +01:00
|
|
|
android:title="@string/title"/>
|
2020-01-15 06:29:32 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_alpha_dsc"
|
2020-01-15 10:34:00 +01:00
|
|
|
android:title="@string/action_title_reverse"/>
|
2020-01-15 06:29:32 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_update_asc"
|
|
|
|
android:title="@string/action_sort_last_updated"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_update_dsc"
|
|
|
|
android:title="@string/action_sort_first_updated"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_unread"
|
|
|
|
android:title="@string/action_filter_unread"/>
|
|
|
|
|
|
|
|
</group>
|
2020-01-06 08:04:29 +01:00
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2015-09-30 19:03:11 +02:00
|
|
|
</menu>
|