Possible Duplicate:
How do I pass data between activities in Android?
I'm implementing a PoC app for Android where I've got a Context Menu that open on long click. It's got two options: "Update", and "Delete". If the user selects the "Update" option, I'd like to open a new Activity
with the data available in EditText
widgets, and ready for alteration.
I've been able to handle the navigation to a new Activity
within an onContextItemSelected
method by checking the MenuItem
IDs, but I can't find any way to pass the data along.
Thanks,
Debojit