20 lines
741 B
XML
20 lines
741 B
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<item
|
|
android:id="@+id/action_search"
|
|
android:icon="@drawable/ic_search"
|
|
android:title="@string/search"
|
|
app:iconTint="@color/contrastColor"
|
|
app:showAsAction="always"
|
|
tools:ignore="AlwaysShowAction" />
|
|
|
|
<item
|
|
android:id="@+id/feed_group_toggle_show_only_ungrouped_subscriptions"
|
|
android:checkable="true"
|
|
android:checked="false"
|
|
android:title="@string/feed_group_show_only_ungrouped_subscriptions"
|
|
app:showAsAction="never" />
|
|
</menu>
|