How can I send data from one activity (intent) to another?

I use this code to send data:

Intent i=new Intent(context,SendMessage.class);
i.putExtra("id", user.getUserAccountId()+"");
i.putExtra("name", user.getUserFullName());
context.startActivity(i);
link|improve this question

feedback

3 Answers

up vote 31 down vote accepted

If your extra data is represented as strings, then you can use intent.getStringExtra(String name) method. In your case:

String id = intent.getStringExtra("id");
String name = intent.getStringExtra("name");

To get the intent which has started your activiy you can call getIntent() method from your activity.

link|improve this answer
from where to can i all this method ?? – Bader Nov 20 '10 at 17:06
6  
@adham: If you are in an activity, from within onCreate, you call getIntent().getStringExtra("id"); to get the id string – ccheneson Nov 20 '10 at 17:08
You can get the intent which started your activity by calling getIntent() method. I've updated the answer. – Malcolm Nov 20 '10 at 17:09
feedback

In the receiving activity

Bundle extras = getIntent().getExtras(); 
String userName;

if (extras != null) {
    userName = extras.getString("name");
    // and get whatever type user account id is
}
link|improve this answer
feedback

This solution is true, though you can share anything in Singleton within set of Activities. Here is an example of such kind of pattern here.

link|improve this answer
This approach could create issues if a given activity is used from multiple points in your app's navigation. – scolestock Dec 30 '11 at 18:29
feedback

Your Answer

 
or
required, but never shown

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