2015-09-30 20:03:11 +03:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-24 04:51:37 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context=".MainActivity">
|
2015-12-28 03:13:52 +03:00
|
|
|
|
2016-07-28 02:01:56 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
|
|
|
android:title="@string/action_search"
|
2020-01-05 19:29:27 +03:00
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
2020-01-24 04:51:37 +03:00
|
|
|
app:showAsAction="collapseActionView|ifRoom" />
|
2016-07-28 02:01:56 +03:00
|
|
|
|
2016-03-04 01:56:57 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter"
|
2016-03-08 02:35:28 +03:00
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
2016-07-28 02:01:56 +03:00
|
|
|
android:title="@string/action_filter"
|
2020-01-24 04:51:37 +03:00
|
|
|
app:showAsAction="ifRoom" />
|
2016-12-04 22:22:12 +03:00
|
|
|
|
2015-09-30 20:03:11 +03:00
|
|
|
<item
|
2016-05-05 01:37:03 +03:00
|
|
|
android:id="@+id/action_update_library"
|
2016-03-06 20:18:09 +03:00
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
2016-07-28 02:01:56 +03:00
|
|
|
android:title="@string/action_update_library"
|
2020-01-24 04:51:37 +03:00
|
|
|
app:showAsAction="ifRoom" />
|
2015-12-28 03:13:52 +03:00
|
|
|
|
2018-01-13 00:02:05 +03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_source_migration"
|
2018-02-22 13:31:22 +03:00
|
|
|
android:title="@string/label_migration"
|
2020-01-24 04:51:37 +03:00
|
|
|
app:showAsAction="never" />
|
2018-01-13 00:02:05 +03:00
|
|
|
|
2015-09-30 20:03:11 +03:00
|
|
|
</menu>
|