Figured it out.  Within the Search Activity access the appSearchData like
so:

Bundle appSearchData = intent.getBundleExtra( SearchManager.APP_DATA );


On Mon, Aug 23, 2010 at 2:40 PM, bennybeta <[email protected]> wrote:

> Hello,
>
> I am kicking off a search using Quick Search Bar like below, using
> extra data in the appSearchData bundle:
>
> Bundle appSearchData = new Bundle();
> appSearchData.putInt( EXTRA_USAGE, USAGE_SHOPPING_LIST );
> appSearchData.putString( EXTRA_LIST_ID, this.listId );
> startSearch( null, false, appSearchData, false );
>
> How can I access the information in the appSearchData bundle from the
> triggered Search Activity?
>
> Thank you...

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to