Prevent actionbar items from moving when searching

Previously, when the user clicked the search button, the context menu
would be hidden and the refresh button would move way too close to the
edge of the screen.

This makes sure that when a user clicks the search button on the
episodes screen, the remaining actionbar items (refresh and context
menu) stay where they are.
This commit is contained in:
Anderson Mesquita 2019-05-11 14:16:44 -04:00
parent c9b17c14f1
commit 65abd2bbb4
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<item
android:id="@+id/action_search"
android:icon="?attr/action_search"
custom:showAsAction="always"
custom:showAsAction="collapseActionView|ifRoom"
custom:actionViewClass="android.support.v7.widget.SearchView"
android:title="@string/search_label"/>
@ -14,7 +14,7 @@
android:id="@+id/refresh_item"
android:title="@string/refresh_label"
android:menuCategory="container"
custom:showAsAction="always"
custom:showAsAction="ifRoom"
android:icon="?attr/navigation_refresh"/>
<item