2020-03-28 06:23:22 +01: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">
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/search"
|
2020-03-28 06:23:22 +01:00
|
|
|
android:visible="false"
|
2020-04-13 06:46:01 +02:00
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
2020-03-28 06:23:22 +01:00
|
|
|
app:showAsAction="ifRoom|collapseActionView" />
|
|
|
|
<item
|
2020-04-13 06:46:01 +02:00
|
|
|
android:id="@+id/action_filter"
|
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
2020-04-19 23:41:50 +02:00
|
|
|
android:title="@string/filter"
|
2020-04-13 06:46:01 +02:00
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu>
|
|
|
|
<group android:checkableBehavior="single">
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_group_all"
|
|
|
|
android:title="@string/group_all" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_ungroup_all"
|
|
|
|
android:title="@string/ungroup_all" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_only_history"
|
|
|
|
android:title="@string/only_history" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_only_updates"
|
|
|
|
android:title="@string/only_updates" />
|
|
|
|
</group>
|
|
|
|
</menu>
|
|
|
|
</item>
|
2020-03-28 06:23:22 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_settings"
|
|
|
|
android:icon="@drawable/ic_settings_white_24dp"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:title="@string/settings"
|
2020-04-04 19:47:32 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2020-03-28 06:23:22 +01:00
|
|
|
</menu>
|