when I call:
Intent i=new Intent(Intent.ACTION_PICK,
Uri.parse("content://contacts/people"));
startActivityForResult(i, PICK_REQUEST);
from within 2 different classes I get 2 different results.
If I call from my main class, it calls the onActivityResult fine and
does what I want.
If I call it from another class, it 1) returns to the onActivityResult
of the first class, not one implemented in the 2nd class and 2)
returns with a null intent, and 0 resultCode and requestCode.
Any thoughts on why I can't call two different onActivityResults and
when it only calls one, sometimes it comes through null?
Thanks,
Mark
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---