This code which works fine in previous versions of Android but not on 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?