2015-09-30 19:03:11 +02:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-24 02:51:37 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context=".MainActivity">
|
2015-12-28 01:13:52 +01:00
|
|
|
|
2016-07-28 01:01:56 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
2020-03-14 21:04:14 +01:00
|
|
|
android:icon="@drawable/ic_search_24dp"
|
2016-07-28 01:01:56 +02:00
|
|
|
android:title="@string/action_search"
|
2020-01-05 17:29:27 +01:00
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
2020-03-14 21:04:14 +01:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-01-24 02:51:37 +01:00
|
|
|
app:showAsAction="collapseActionView|ifRoom" />
|
2016-07-28 01:01:56 +02:00
|
|
|
|
2016-03-03 23:56:57 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter"
|
2020-03-14 21:04:14 +01:00
|
|
|
android:icon="@drawable/ic_filter_list_24dp"
|
2016-07-28 01:01:56 +02:00
|
|
|
android:title="@string/action_filter"
|
2020-03-14 21:04:14 +01:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-01-24 02:51:37 +01:00
|
|
|
app:showAsAction="ifRoom" />
|
2016-12-04 20:22:12 +01:00
|
|
|
|
2015-09-30 19:03:11 +02:00
|
|
|
<item
|
2016-05-05 00:37:03 +02:00
|
|
|
android:id="@+id/action_update_library"
|
2020-03-14 21:04:14 +01:00
|
|
|
android:icon="@drawable/ic_refresh_24dp"
|
2016-07-28 01:01:56 +02:00
|
|
|
android:title="@string/action_update_library"
|
2020-03-14 21:04:14 +01:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-01-24 02:51:37 +01:00
|
|
|
app:showAsAction="ifRoom" />
|
2015-12-28 01:13:52 +01:00
|
|
|
|
2015-09-30 19:03:11 +02:00
|
|
|
</menu>
|