2015-11-30 12:45:45 -05: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 android:id="@+id/action_download"
|
2016-02-09 10:50:26 -05:00
|
|
|
android:title="@string/action_download"
|
2016-03-07 18:35:28 -05:00
|
|
|
android:icon="@drawable/ic_file_download_white_24dp"
|
2016-02-09 10:50:26 -05:00
|
|
|
android:visible="true"
|
|
|
|
app:showAsAction="ifRoom"/>
|
2015-11-30 12:45:45 -05:00
|
|
|
|
|
|
|
<item android:id="@+id/action_delete"
|
2016-02-09 10:50:26 -05:00
|
|
|
android:title="@string/action_delete"
|
2016-03-06 12:18:09 -05:00
|
|
|
android:icon="@drawable/ic_delete_white_24dp"
|
2016-02-09 10:50:26 -05:00
|
|
|
android:visible="false"
|
|
|
|
app:showAsAction="ifRoom"/>
|
2015-11-30 12:45:45 -05:00
|
|
|
|
|
|
|
<item android:id="@+id/action_mark_as_read"
|
2016-02-09 10:50:26 -05:00
|
|
|
android:title="@string/action_mark_as_read"
|
2016-03-07 18:35:28 -05:00
|
|
|
android:icon="@drawable/ic_done_all_white_24dp"
|
2016-02-09 10:50:26 -05:00
|
|
|
app:showAsAction="ifRoom"/>
|
2015-11-30 12:45:45 -05:00
|
|
|
|
|
|
|
<item android:id="@+id/action_mark_as_unread"
|
2016-02-09 10:50:26 -05:00
|
|
|
android:title="@string/action_mark_as_unread"
|
2016-03-07 18:35:28 -05:00
|
|
|
android:icon="@drawable/ic_done_all_grey_24dp"
|
2016-02-09 10:50:26 -05:00
|
|
|
app:showAsAction="ifRoom"/>
|
2016-01-19 10:35:36 -05:00
|
|
|
|
2016-02-09 10:50:26 -05:00
|
|
|
<item android:id="@+id/action_mark_previous_as_read"
|
|
|
|
android:title="@string/action_mark_previous_as_read"/>
|
2016-01-19 10:35:36 -05:00
|
|
|
|
2015-11-30 12:45:45 -05:00
|
|
|
</menu>
|