I would like to find a way for an activity to communicate with its parent activity. I have an activity which is called by the parent with the StartSubActivity() function.
If anyone knows of an effective way of doing this, i would appreciate it. Once i get it figured out, ill make a tiny-tutorial about it since i think this is could be a common question.
:::
EDIT:
I think using ActivityPendingResult (http://code.google.com/android/referenc ... esult.html) is a good way to do this. Right now i am trying to find a way to pass the token created by createActivityPendingResult to a child activity. I tried converting it to a string or int and passing it via bundle, but i cannot recast that back into a ActivityPendingResult object.

