I have a button in an activity, on clicking that button, I direct the user to a search activity with a search view in the toolbar..
I'm using android.support.v7.widget.SearchView
, I managed to expand it automatically using searchView.setIconifiedByDefault(false)
in onCreateOptionsMenu
..
I also open the keypad automatically in activity onCreate
, yet I still have to click in the searchView to start typing there, I want the cursor to be set there automatically..
any help?