Thanks for the reply. I figured out my issue. I had code after the startActivityForResult call that needed to run after receiving the result. Once I moved it inside the onActivityResult method, it works great! I don't know what made sent me down the path of thinking the thread would wait for a result, then run my code, then trigger onActivityResult as well. Just noobie issue.
On Nov 28, 8:44 pm, Emanuel Moecklin <[email protected]> wrote: > It does work but you need to post some code (Manifest and Java code) > for us to be able to help/ > > Cheers > Emanuel Moecklin > 1gravity LLC > > On Nov 22, 10:26 pm, DTecMeister <[email protected]> wrote: > > > > > I have classes set up like this: MyActivity extends MiddleClass > > extends Activity. > > I need to call startActivityForResult in a MiddleClass method and have > > onActivityResult triggered in either MiddleClass or MyActivity. > > > I've tried various configurations of AndroidManifest and constructor > > changes, but can't seem to get it to trigger. > > Is this possible, or do I need to give up on the concept?- Hide quoted text > > - > > - Show quoted text - -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

