HI friends,

In my app i am  traversing between 4 activities A,B,C,D .

in Activity A i am going to B and then C and D

Intent intent = new Intent(A,B);
startActivityForResult(intent,0);

>From D i need to go to activity A


from Activity D i am doing

Intent intent = new Intent();
intent.putExtra("str",str);
setResult(RESULT_OK,intent)

In activity A
I am fetching result in

onActivityResult(int requestCode, int resultCode, Intent data)
{
Here the intent data is null
}

How to resolve this issue.Please reply.





-- 
Regards,
Vani Reddy

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to