2015-11-02 16:42:08 +03: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">
|
|
|
|
|
2020-01-24 04:51:37 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_download"
|
2020-03-15 23:46:38 +03:00
|
|
|
android:icon="@drawable/ic_file_download_black_24dp"
|
2020-01-24 04:51:37 +03:00
|
|
|
android:title="@string/action_download"
|
2020-03-14 23:04:14 +03:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-03-09 00:37:42 +03:00
|
|
|
app:showAsAction="always" />
|
2015-11-03 18:21:50 +03:00
|
|
|
|
2020-01-24 04:51:37 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_delete"
|
2020-03-14 23:04:14 +03:00
|
|
|
android:icon="@drawable/ic_delete_24dp"
|
2020-01-24 04:51:37 +03:00
|
|
|
android:title="@string/action_delete"
|
2020-03-14 23:04:14 +03:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-03-09 00:37:42 +03:00
|
|
|
app:showAsAction="always" />
|
2015-11-04 14:02:55 +03:00
|
|
|
|
2020-02-17 01:46:31 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_bookmark"
|
2020-03-11 04:14:13 +03:00
|
|
|
android:icon="@drawable/ic_bookmark_border_white_24dp"
|
2020-02-17 01:46:31 +03:00
|
|
|
android:title="@string/action_bookmark"
|
2020-03-14 23:04:14 +03:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-03-09 00:37:42 +03:00
|
|
|
app:showAsAction="always" />
|
2020-02-17 01:46:31 +03:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_remove_bookmark"
|
2020-03-11 04:14:13 +03:00
|
|
|
android:icon="@drawable/ic_bookmark_white_24dp"
|
2020-02-17 01:46:31 +03:00
|
|
|
android:title="@string/action_remove_bookmark"
|
2020-03-14 23:04:14 +03:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-03-09 00:37:42 +03:00
|
|
|
app:showAsAction="always" />
|
2020-02-17 01:46:31 +03:00
|
|
|
|
2020-01-24 04:51:37 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mark_as_read"
|
2020-03-17 00:53:17 +03:00
|
|
|
android:icon="@drawable/ic_done_24dp"
|
2020-01-24 04:51:37 +03:00
|
|
|
android:title="@string/action_mark_as_read"
|
2020-03-14 23:04:14 +03:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-03-09 00:37:42 +03:00
|
|
|
app:showAsAction="always" />
|
2015-11-02 16:42:08 +03:00
|
|
|
|
2020-01-24 04:51:37 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mark_as_unread"
|
2020-03-17 00:53:17 +03:00
|
|
|
android:icon="@drawable/ic_done_outline_24dp"
|
2020-01-24 04:51:37 +03:00
|
|
|
android:title="@string/action_mark_as_unread"
|
2020-03-17 00:53:17 +03:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-03-09 00:37:42 +03:00
|
|
|
app:showAsAction="always" />
|
2015-11-02 16:42:08 +03:00
|
|
|
|
2020-03-08 07:00:29 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mark_previous_as_read"
|
|
|
|
android:title="@string/action_mark_previous_as_read"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-01-24 04:51:37 +03:00
|
|
|
</menu>
|