I have a searchbar widget on top of a mapview, and what I would like is when I click that widget, a the mapview is replaced by a listview which dynamically changes the displayed items as I enter my query and keep the searchbar widget on top. Then when I press the back arrow on the search bar widget, I return to the mapview. So far, I have implemented the search bar as per the tutorial and when I press enter it launches another activity which contains my listview, but this is not what I want as the searchbar widget disappears.
My question is, is there a way to accomplish this using the searchbar widget, or should I just implement an edittext and change the fragment when the edittext is clicked?
I had the same problem and the way I have implemented is I have a normal search menu icon in Activity 1 and onClick it opens another ListViewActivity.
You can override the textview inside searchView itself so you dont have to implement custom edittext and close and back button