2015-09-30 13:03:11 -04:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
|
2015-12-27 19:13:52 -05:00
|
|
|
|
2016-03-03 17:56:57 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter"
|
|
|
|
android:title="@string/action_filter"
|
2016-03-07 18:35:28 -05:00
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
2016-03-03 17:56:57 -05:00
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter_downloaded"
|
|
|
|
android:checkable="true"
|
|
|
|
android:title="@string/action_filter_downloaded"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter_unread"
|
|
|
|
android:checkable="true"
|
|
|
|
android:title="@string/action_filter_unread"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter_empty"
|
|
|
|
android:title="@string/action_filter_empty"/>
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2015-09-30 13:03:11 -04:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:title="@string/action_search"
|
2016-03-06 12:18:09 -05:00
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
2015-09-30 13:03:11 -04:00
|
|
|
app:showAsAction="collapseActionView|ifRoom"
|
2015-12-27 19:13:52 -05:00
|
|
|
app:actionViewClass="android.support.v7.widget.SearchView" />
|
|
|
|
|
2015-09-30 13:03:11 -04:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_refresh"
|
|
|
|
android:title="@string/action_refresh"
|
2016-03-06 12:18:09 -05:00
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
2015-09-30 13:03:11 -04:00
|
|
|
app:showAsAction="ifRoom" />
|
2015-12-27 19:13:52 -05:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_edit_categories"
|
|
|
|
android:title="@string/action_edit_categories"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2015-09-30 13:03:11 -04:00
|
|
|
</menu>
|