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
|
|
|
app:showAsAction="never" />
|
|
|
|
|
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-03-05 07:56:26 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_add_to_home_screen"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/add_to_home_screen"
|
2020-03-05 07:56:26 +01:00
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
</menu>
|