I am successfully using a search widget in my action bar to perform a search following this guide. The search is fine, but I\'m wondering how to pass additional variables on a s
I think you want to just use
String value = intent.getStringExtra(SearchManager.APP_DATA);
because the intent holds the bundle you passed to start the search.