Have you tried this?
searchMenu.expandActionView();
in OnCreateOptionsMenu()
menu.add("Search") .setIcon(ic_search_inverse) .setActionView(searchView) .expandActionView(); .setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM | MenuItem.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW);
You can add focus, open soft keyboard. So, so that everything is ready for the user, enter and search.
But this is not standard behavior.
source share