2015-09-30 13:03:11 -04:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-23 20:51:37 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context=".MainActivity">
|
2015-12-27 19:13:52 -05:00
|
|
|
|
2016-07-27 19:01:56 -04:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
|
|
|
android:title="@string/action_search"
|
2020-01-05 11:29:27 -05:00
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
2020-01-23 20:51:37 -05:00
|
|
|
app:showAsAction="collapseActionView|ifRoom" />
|
2016-07-27 19:01:56 -04:00
|
|
|
|
2016-03-03 17:56:57 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter"
|
2016-03-07 18:35:28 -05:00
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
2016-07-27 19:01:56 -04:00
|
|
|
android:title="@string/action_filter"
|
2020-01-23 20:51:37 -05:00
|
|
|
app:showAsAction="ifRoom" />
|
2016-12-04 14:22:12 -05:00
|
|
|
|
2015-09-30 13:03:11 -04:00
|
|
|
<item
|
2016-05-04 18:37:03 -04:00
|
|
|
android:id="@+id/action_update_library"
|
2016-03-06 12:18:09 -05:00
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
2016-07-27 19:01:56 -04:00
|
|
|
android:title="@string/action_update_library"
|
2020-01-23 20:51:37 -05:00
|
|
|
app:showAsAction="ifRoom" />
|
2015-12-27 19:13:52 -05:00
|
|
|
|
2020-02-05 22:58:20 -05:00
|
|
|
<item
|
|
|
|
android:title="@string/action_display"
|
|
|
|
app:showAsAction="never">
|
|
|
|
<menu>
|
2020-02-17 17:26:20 -05:00
|
|
|
<group android:checkableBehavior="single">
|
2020-02-05 22:58:20 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_display_grid"
|
|
|
|
android:title="@string/action_display_grid" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_display_list"
|
|
|
|
android:title="@string/action_display_list" />
|
|
|
|
</group>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_display_download_badge"
|
|
|
|
android:checkable="true"
|
|
|
|
android:title="@string/action_display_download_badge" />
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2015-09-30 13:03:11 -04:00
|
|
|
</menu>
|