[android-developers] Forward activity resultCode?

2010-03-11 Thread Mark Wyszomierski
Hi, Is it possible to forward a result like the following?: ActivityA startActivityForResult(intentB, 22); ActivityB startActivityForResult(intentC, 22); finish(); ActivityC setResult(99); finish(); is it possible to get A's onActivityResult() to fire here and catch the value

Re: [android-developers] Forward activity resultCode?

2010-03-11 Thread Dianne Hackborn
In B, set this flag in the Intent you are starting: http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_FORWARD_RESULT On Thu, Mar 11, 2010 at 12:04 AM, Mark Wyszomierski mar...@gmail.comwrote: Hi, Is it possible to forward a result like the following?: