[android-developers] onActivityResult in Activity in TabActivity

2011-04-03 Thread Julius Spencer
Hi, I am having trouble getting onActivityResult to run when I have an Activity finish. The situation is: Activity A (TabActivity) Activity B (Activity in Activity A) - set up in A like so: intent = new Intent().setClass(this, B.class); spec.setContent(intent); - starts Activit

Re: [android-developers] onActivityResult in Activity in TabActivity

2011-04-03 Thread Julius Spencer
Hi, After reading the documentation, the problem was that my REQUEST_CODE was negative so doesn't return a result. Ooops! Hope this helps someone else. Regards, Julius. On 3/04/2011, at 7:41 PM, Julius Spencer wrote: > Hi, > > I am having trouble getting onActivityResult to run when I have a