2019-10-14 11:15:00 +02:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
2020-01-11 21:13:51 +01:00
|
|
|
android:title="@string/action_search"
|
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
|
|
|
app:showAsAction="collapseActionView|ifRoom" />
|
2019-10-14 11:15:00 +02:00
|
|
|
|
2019-12-17 05:37:34 +01:00
|
|
|
<item
|
2019-12-17 09:18:19 +01:00
|
|
|
android:id="@+id/action_filter"
|
2019-12-17 05:37:34 +01:00
|
|
|
android:title="@string/action_filter"
|
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
2020-01-15 07:13:01 +01:00
|
|
|
app:showAsAction="ifRoom"/>
|
2019-12-17 05:37:34 +01:00
|
|
|
|
2019-12-22 08:28:02 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_auto_check"
|
|
|
|
android:title="@string/action_auto_check_extensions"
|
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
|
|
|
android:checkable="true"
|
|
|
|
app:showAsAction="never"/>
|
|
|
|
|
2019-10-14 11:15:00 +02:00
|
|
|
</menu>
|