[android-developers] Re: Does onActivityResult get called when an activity is recreated?

2009-09-30 Thread Dianne Hackborn
It does get delivered when recreated (just confirmed by trying to attach an image in gmail and killing gmail while in the gallery); there must be some other wrinkle to your situation. On Wed, Sep 30, 2009 at 9:36 AM, Jeff King cmptrnr...@gmail.com wrote: I have a flow A-B-C-D where A desires

[android-developers] Re: Does onActivityResult get called when an activity is recreated?

2009-09-30 Thread Jeff King
How did you kill gmail? I thought only Android could kill activities. I get desired results when onRestart is called but not when onCreate is called after returning to the activity that had been killed (left side of diagram

[android-developers] Re: Does onActivityResult get called when an activity is recreated?

2009-09-30 Thread Dianne Hackborn
I used the shell to kill the process with the kill command. You could also turn on the immediately destroy activities development option for a somewhat similar effect (your current activity instance will be destroyed, but its process will still be there). On Wed, Sep 30, 2009 at 10:03 AM, Jeff

[android-developers] Re: Does onActivityResult get called when an activity is recreated?

2009-09-30 Thread Jeff King
I have been using the immediately destroy activities option. Thanks for your help. It seems I need further investigation on why onResultActivity is not being called. On Sep 30, 1:03 pm, Dianne Hackborn hack...@android.com wrote: I used the shell to kill the process with the kill command.  You