2020-03-05 07:56: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">
|
|
|
|
|
|
|
|
<item
|
2020-03-22 09:10:27 +01:00
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/search"
|
2020-03-22 09:10:27 +01:00
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
|
|
|
app:showAsAction="collapseActionView|ifRoom" />
|
2020-03-05 07:56:26 +01:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_download"
|
|
|
|
android:icon="@drawable/ic_file_download_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/download"
|
2020-03-05 07:56:26 +01:00
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/download_next"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/next_unread_chapter" />
|
2020-03-15 22:34:28 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/download_next_5"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/next_5_unread" />
|
2020-03-05 07:56:26 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/download_custom"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/custom_range" />
|
2020-03-05 07:56:26 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/download_unread"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/all_unread_chapters" />
|
2020-03-05 07:56:26 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/download_all"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/all_chapters" />
|
2020-03-05 07:56:26 +01:00
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_mark_all_as_read"
|
|
|
|
android:icon="@drawable/ic_done_all_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/mark_all_as_read"
|
2020-04-06 09:10:53 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2020-03-05 07:56:26 +01:00
|
|
|
|
|
|
|
<item
|
2020-03-07 19:52:49 +01:00
|
|
|
android:id="@+id/action_mark_all_as_unread"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/mark_all_as_unread"
|
2020-03-05 07:56:26 +01:00
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-04-06 09:10:53 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_refresh_tracking"
|
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/refresh_tracking"
|
2020-04-06 09:10:53 +02:00
|
|
|
|
2020-04-09 06:50:22 +02:00
|
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_remove_downloads"
|
|
|
|
android:title="@string/remove_downloads"
|
2020-04-13 07:13:49 +02:00
|
|
|
app:showAsAction="never">
|
2020-04-09 06:50:22 +02:00
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/remove_all"
|
|
|
|
android:title="@string/all_chapters" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/remove_non_bookmarked"
|
|
|
|
android:title="@string/all_but_bookmarked_chapters" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/remove_read"
|
|
|
|
android:title="@string/all_read_chapters" />
|
|
|
|
</menu>
|
|
|
|
</item>
|
2020-03-22 09:10:27 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_edit"
|
|
|
|
android:icon="@drawable/ic_edit_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/edit"
|
2020-03-22 09:10:27 +01:00
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-04-13 00:53:56 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_migrate"
|
|
|
|
android:icon="@drawable/ic_swap_calls_white_24dp"
|
|
|
|
android:title="@string/migrate"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-03-05 07:56:26 +01:00
|
|
|
</menu>
|