Honeycomb is not passing the APP_DATA bundle to my search results activity
This code which works fine in previous versions of Android but not o开发者_开发百科n 3.0 Honeycomb:
public boolean onSearchRequested() {
Bundle currentData = new Bundle();
currentData.putLong(Folder.FOLDER_LUID, folderId);
startSearch(lastSearchText, false, currentData, false);
return true;
}
The APP_DATA
bundle in the intent is NOT passed to my search results activity.
Is there perhaps some new configuration that must be done to get this data passed in the intent?
精彩评论