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"
|
|
|
|
android:title="@string/action_search"
|
|
|
|
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-03-07 19:52:49 +01:00
|
|
|
android:title="@string/action_download"
|
2020-03-05 07:56:26 +01:00
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/download_next"
|
2020-03-12 07:16:44 +01:00
|
|
|
android:title="@string/download_first" />
|
2020-03-15 22:34:28 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/download_next_5"
|
|
|
|
android:title="@string/download_5" />
|
2020-03-05 07:56:26 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/download_custom"
|
|
|
|
android:title="@string/download_custom" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/download_unread"
|
|
|
|
android:title="@string/download_unread" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/download_all"
|
|
|
|
android:title="@string/download_all" />
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_mark_all_as_read"
|
|
|
|
android:icon="@drawable/ic_done_all_white_24dp"
|
|
|
|
android:title="@string/action_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"
|
|
|
|
android:title="@string/action_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"
|
|
|
|
android:title="@string/action_refresh_tracking"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-03-22 09:10:27 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_edit"
|
|
|
|
android:icon="@drawable/ic_edit_white_24dp"
|
|
|
|
android:title="@string/action_edit"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-03-05 07:56:26 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_add_to_home_screen"
|
|
|
|
android:title="@string/action_add_to_home_screen"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
</menu>
|