Getting Android to call onActivityResult() after onSearchRequested()
Because everything is handled through the SearchManager in Android, onActivityResult() is not typically called after onSearchRequested(). What I was looking for was a clean way to get search results back to the activity that originally called onSearchRequested(). I first tried the most obvious ...