Show android SearchView EditText by default
EDIT---
Oh sorry! I tought you wanted to do an 'empty' query. I think you can open SearchView programmatically using:
searchView.setIconified(false);
OLD ANSWER--
Inside an Activity you can try with:
onSearchRequested();
And inside a Fragment you can try with:
getActivity().onSearchRequested();
Good luck!