112

There is this widget for the ActionBar which called 'SearchView'. When it's not in use, it looks like this:

enter image description here

And when it's in use, it looks like this:

enter image description here

I want (programmatically of course) to open the searchview (make it "in use").

I tried several functions such as:

SearchView searchView = (SearchView) menu.findItem(R.id.menu_search).getActionView(); searchView.setOnQueryTextListener(this); searchView.performClick(); searchView.requestFocus(); 

But none of those worked...

The SearchView in the XML:

<item android:id="@+id/menu_search" android:title="Search" android:icon="@drawable/ic_action_search" android:showAsAction="ifRoom|collapseActionView" android:actionViewClass="android.widget.SearchView" /> 

9 Answers 9

280

Expand the SearchView with

searchView.setIconified(false); 

and collapse it with

searchView.setIconified(true); 

You need to change the value of android:showAsAction from ifRoom|collapseActionView to always. The SearchView's attribute android:iconifiedByDefault should be true, which is the default value, otherwise the user can not collapse the SearchView after it was expanded programmatically.

Sign up to request clarification or add additional context in comments.

8 Comments

Hello, a keyboard pops-up but the SearchView does not open.
OK, I'm a little surprised, works for me. searchView.onActionViewExpanded() should work as well. If not, can you show your menu.xml?
Hello, this also didn't work. I updated the post with the XML source code.
showAsAction="always" will display an ugly fullscreen search bar though, after rotation
showAsAction="always" makes the search icon stay on the action bar when is expanded, which doesn't resemble to appearance when focusing the search manually.
|
83

Try to call expandActionView() on MenuItem, not onActionViewExpanded() on ActionView.

It works for me.

MenuItem searchMenuItem = menu.findItem(R.id.menu_search); searchView = (SearchView) searchMenuItem.getActionView(); searchMenuItem.expandActionView(); 

2 Comments

Works perfect, but only for API > 14. For earlier API you can use this: MenuItemCompat.expandActionView(searchMenuItem);
This is the correct solution - The selected one forces you to set showAsAction: always which causes some issues.
13

If you want to use support library only when necessary, do this

 MenuItem searchMenuItem = menu.findItem(R.id.action_search); if (Utils.hasIceCreamSandwich()) searchMenuItem.expandActionView(); else MenuItemCompat.expandActionView(searchMenuItem); 

else simply do this

 MenuItem searchMenuItem = menu.findItem(R.id.action_search); MenuItemCompat.expandActionView(searchMenuItem); 

Comments

6

I know this is late but

Try calling expandActionView() to open it and collapseActionView() to close it. You can call requestFocus() on the actual Action View via getActionView() to give the search view focus :)

Comments

6

For androidx.appcompat.widget.SearchView,

searchView.setIconifiedByDefault(true) // didn't work searchMenuItem.expandActionView() // didn't work MenuItemCompat.expandActionView(searchMenuItem) // didn't work searchView.onActionViewExpanded() // didn't work 

The following worked for me,

searchView.findViewById<View>(R.id.search_button).performClick() 

1 Comment

You should rather use searchView.setIconified(false) to expand the search view
2

Expanding the answer of Matthias Robberts:

I wanted a list fragment to keep it's search value and set it after user returns from other fragment.

if (myViewModel.filterTextSaved.isNotEmpty()) { // Kotlin, storing state in ViewModel searchItem.expandActionView() // needs to come first, otherwise empty text theTextArea.setText(courseViewModel.filterTextOnClick) } 

and for the menu I keep always|collapseActionView, otherwise it stays open when user deletes the text.

Comments

1

I was searching for a solution to expand SearchView programmatically because I need to restore expand state. No one solution was worked for me. Except using Handler().post(). I know it's not a good practice to use post(). But I'm working on legacy project and this workaround is acceptable for me.

Initialize variables block

val searchMenuItem = menu.findItem(R.id.menu_search_item) val searchView = searchMenuItem.actionView as SearchView 

How to expand SearchView:

Handler().post { searchMenuItem.expandActionView() } 

Reason why post() helps: if your app is not well written it may doing too much work on UI thread. post() ensures that your block of code will be executed when UI thread will be available for execution. Which means if you are using this workaround you can notice small delay between SearchView expanding

Comments

0

To open up a searchView keeping the close_button in the end use this in onCreate:-

searchView.findViewById(R.id.search_button).performClick(); 

Comments

0

If you are using Material Search View com.google.android.material.search.SearchView,

you can show and hide the `` with

searchView.show() // expands SearchView searchView.hide() // collapses SearchView 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.