Pierre Henry wrote: > Encoutered a tricky result using startActivityForResult from an > Activity > > In the called Activity , I set result like that: > ______________ > setResult(RESULT_OK, getIntent().putExtra(getPackageName()+"values", > values)); > ______________________ > > When running the on ActivityResult, the extra has disappeared from > intent in the method *onActivityResult* > > In the api doc, it is telling that package name must be used , so I > used it (see code upwards ). > > So why is that ?
Create a fresh Intent (via new Intent()) and see if that helps. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- 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

