Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question

5 Answers

up vote 150 down vote accepted

First, get the intent which has started your activity using the getIntent() method:

Intent intent = getIntent();

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");
share|improve this answer
from where to can i all this method ?? – Adham Nov 20 '10 at 17:06
8  
@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

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
}
share|improve this answer
//  How to send value using intent from one class to another class
//  class A(which will send data)
    Intent theintent = new Intent(A.this,B.java);
    theintent.putExtra("name",john);
    startActivity(theintent);
//  How to get these values in another class
//  Class B
    Intent i= getIntent();
    i.getExtra("name");
//  if you log here i than you will get the value of i i.e. john
share|improve this answer

You can see this link. That example is useful. http://androidgenuine.com/?tag=pass-string-from-intent-to-another-intent

share|improve this answer

I just posted an answer here that covers this topic in a bit more detail, including some alternatives.

It utilises Vapor API, a new jQuery inspired Android framework I wrote to simplify Android dev. Check out the example in that answer for how you can easily pass data between activites.

Also it demonstrates VaporIntent, which lets you chain method calls and utilise the overloaded .put(...) method:

$.Intent().put("data", "myData").put("more", 568)...

You can easily pass data around your whole application using Vapor API, so hopefully it'll be helpful to you and others during app development.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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