When adding a SearchView to the menu (see example below), it's icon doesn't change and it behaves in a non-standard way. For example, long clicking on the search menu button should have popped the text Search, but it doesn't.
How do I change its behavior to be more standard? (icon and long click for now. I'm sure there are other issues)
Code sample for adding the view:
MenuItem item = menu.add("Search");
SearchView sv = new SearchView(getActivity());
item.setActionView(sv);
item.setIcon(drawable.menu_search);
item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
Thanks.