Reputation: 705
I have a searchView with RecentSuggestions and I want when someone press on one of the suggestions to open a different activity from the default that I state on AndroidManifest. I can't find anything to implement this. I tried to override the onQueryTextSubmit() but it didn't work. Any ideas? Thanks.
Upvotes: 1
Views: 285
Reputation: 4593
Try SearchView.OnSuggestionListener interface and override its onSuggestionClick(int position) method. You can also have a look at android documentation: Adding Recent Query Suggestions
Upvotes: 2