I have this code:

Intent intent = new Intent();
        intent.setAction(Intent.ACTION_PICK);
        intent.setData(ContactsContract.Contacts.CONTENT_URI);
        intent.putExtra(EXTRA_ONLINE_ID, (String) v.getTag());
        startActivityForResult(intent, PICK_CONTACT);

Then on response:

public void onActivityResult(int reqCode, int resultCode, Intent data) {


        switch (reqCode) {
            case (PICK_CONTACT):
                if (resultCode == Activity.RESULT_OK) {
                    try {
                        Uri contactData = data.getData();
                        String onlineid = data.getStringExtra(EXTRA_ONLINE_ID);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
                break;
        }
        super.onActivityResult(reqCode, resultCode, data);
    }

the onlineid variable is null. How can I pass a value and then to receive it back?

EDIT

I even tried,

Bundle extras = data.getExtras(); // returns null
link|improve this question

check resultCode must be -1 for Activity.RESULT_OK – Jorgesys May 19 '10 at 15:38
that is fine, it gets into that if, but the Extras is empty. – Pentium10 May 19 '10 at 17:39
feedback

3 Answers

ok Check if your Activity android:launchMode is configured as SingleTask or SingleInstance! that must be the problem :)

link|improve this answer
This does not help. – Pentium10 May 19 '10 at 9:52
Hi Pentium10, did you solve this? I think everything is ok in your code :S – Jorgesys Jun 1 '10 at 20:53
I did not resolved. I think that the custom extras we pass to that other activity is not retained. – Pentium10 Jun 26 '10 at 9:38
feedback

I was running into some problems with this as well.

Instead of this line

 intent.putExtra(EXTRA_ONLINE_ID, (String) v.getTag());

Try

 intent.putExtra(EXTRA_ONLINE_ID, "" + v.getTag());
link|improve this answer
feedback

The EXTRA_ONLINE_ID field will have to be set in the activity that you launched using setResult. If it's not setting that value in the returned Intent (which is different from what you sent) then you will get a null value.

link|improve this answer
As you see it uses ContactsContract.Contacts.CONTENT_URI that is not part of my code base. – Pentium10 Mar 15 '11 at 7:06
Can't help it then I guess. Questions is, why do you want to return the data that you already have. – Abhinav Mar 15 '11 at 7:07
I want to make it compatible with other code fragment. – Pentium10 Mar 15 '11 at 11:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.