You can try this on the emulator. Hit Ctrl+F11 and you'll 'rotate' the 
device.

setResult does not immediately return results back to its parent activity 
(You can call setResult many times: only the last call to setResult will be 
effective, superseding all previous calls)
The Intent you use when calling setResult will be the same Intent passed to 
the parent's implementation of onActivityResult later.
Only when your child-activity finishes (call 'finish()' or the user hits the 
Back-key/button), then onActivtyResult will be called with same the Intent 
that was used by the last call to setResult.

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

Reply via email to