On Dec 30, 2011, at 12:41 AM, NebulaSleuth wrote:
> I have an Activity that starts a second activity using
> StartActivityForResult().
>
> The second activity starts fine, and then spawns a thread to do some work.
This seems like a very strange design. Activities are for the user, e.g. if you
w
My suggestion is, that the debugger Logcat has some more information for you.
Have you made a function that is triggered if the Thread is done had you
worked with breackpoints and go step for step to the next functions.
That could bring you some more information.
Make a Log.Debug before you fini
I have an Activity that starts a second activity using
StartActivityForResult().
The second activity starts fine, and then spawns a thread to do some work.
When the work is complete I want to return to the calling Activity by
calling SetResult() and Finish().
The problem is control doesn't retur