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