Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?

share|improve this question
@UMMA - you don't need to keep marking your questions as "Community Wiki". Have a look here: meta.stackoverflow.com/questions/11740/… – Dave Webb Jan 26 '10 at 13:11
@Paresh: the link you provided is broken. could you plz provide an alternative? – antiplex Jan 25 '12 at 17:23
possible duplicate of How to pass object from one activity to another in Android – luke May 1 at 16:02

13 Answers

If you're just passing objects around then Parcelable was designed for this. It requires a little more effort to use than using Java's native serialization, but it's way faster (and I mean way, WAY faster).

From the docs, a simple example for how to implement is:

// simple class that just has one member property as an example
public class MyParcelable implements Parcelable {
    private int mData;

    /* everything below here is for implementing Parcelable */

    // 99.9% of the time you can just ignore this
    public int describeContents() {
        return 0;
    }

    // write your object's data to the passed-in Parcel
    public void writeToParcel(Parcel out, int flags) {
        out.writeInt(mData);
    }

    // this is used to regenerate your object. All Parcelables must have a CREATOR that implements these two methods
    public static final Parcelable.Creator<MyParcelable> CREATOR = new Parcelable.Creator<MyParcelable>() {
        public MyParcelable createFromParcel(Parcel in) {
            return new MyParcelable(in);
        }

        public MyParcelable[] newArray(int size) {
            return new MyParcelable[size];
        }
    };

    // example constructor that takes a Parcel and gives you an object populated with it's values
    private MyParcelable(Parcel in) {
        mData = in.readInt();
    }
}

Observe that in the case you have more than one field to retrieve from a given Parcel, you must do this in the same order you put them in (that is, in a FIFO approach).

Once you have your objects implement Parcelable it's just a matter of putting them into your Intents with putExtra():

Intent i = new Intent();
i.putExtra("name_of_extra", myParcelableObject);

Then you can pull them back out with getParcelableExtra():

Intent i = getIntent();
MyParcelable myParcelableObject = (MyParcelable) i.getParcelableExtra("name_of_extra");
share|improve this answer
2  
How would this be implemented where mData is an object (e.g. JSONObject) and not an int? – Peter Ajtai Nov 2 '11 at 17:04
47  
Why can't just pass the object without all this sh*t? We want to pass an object that is already in memory. – tecnotron Jun 4 '12 at 6:57
12  
@tecnotron its beacuse apps are in different processes, and have separate memory address spaces, you cant just send pointer (reference) to memory block in your process and expect it to be available in another process. – marcin_j Jun 21 '12 at 12:29
2  
What do i do if i cant make the object's class serializible or Parceable? – Amel Jose Jun 27 '12 at 19:44
1  
@Amel can you give an example? – fiXedd Oct 19 '12 at 16:18
show 3 more comments

You'll need to serialize your object into some kind of string representation. One possible string representation is JSON, and one of the easiest ways to serialize to/from JSON in android, if you ask me, is through Google GSON.

In that case you juse put the string return value from (new Gson()).toJson(myObject); and retrieve the string value and use fromJson to turn it back into your object.

If your object isn't very complex, however, it might not be worth the overhead, and you could consider passing the separate values of the object instead.

share|improve this answer
1  
Why this got a -1? Can someone explain what is wrong? – Macarse Apr 13 '10 at 21:06
7  
I'm guessing because fiXedd's answer solves the same problem without the use of external libraries, in a way that is simply so much preferable, that nobody should ever have a reason to go by the solution i provided (unaware, at the time, of fiXedd's brilliant solution) – David Hedlund Apr 13 '10 at 21:30
I think that is correct. Furthermore, JSON is a protocol more appropriate for client/server and not thread-to-thread. – mobibob Aug 16 '10 at 16:50
1  
Not necessarily a bad idea, esp. since Gson is much simpler to use than to implement parcelable for all the objects you want to send. – uvesten Apr 13 '11 at 15:26
2  
as iam using gson in my app this is a really easy and nice way! – Lars Dec 8 '11 at 9:22

For situations where you know you will be passing data within an application, use "globals" (like static Classes)

Here is what Dianne Hackborn (hackbod - a Google Android Software Engineer) had to say on the matter:

For situations where you know the activities are running in the same process, you can just share data through globals. For example, you could have a global HashMap<String, WeakReference<MyInterpreterState>> and when you make a new MyInterpreterState come up with a unique name for it and put it in the hash map; to send that state to another activity, simply put the unique name into the hash map and when the second activity is started it can retrieve the MyInterpreterState from the hash map with the name it receives.

share|improve this answer

if your object class implements Serializable, you don't need to do anything else, you can pass a serializable object.
that's what i use.

share|improve this answer

You can send serializable object through intent

// send where details is object
ClassName details= new ClassName();
Intent i = new Intent(context, EditActivity.class);
i.putExtra("Editing", details);
startActivity();


//receive
ClassName model = (ClassName) getIntent().getSerializableExtra("Editing");

And 

Class ClassName implements Serializable{
} 
share|improve this answer
you can send Parcelable objects thru intent, too. – tony gil Mar 20 at 21:07
1  
yes, you are right. – Sridhar Mar 21 at 2:40

You can use android BUNDLE in this like this. Create a Bundle from your class like

public Bundle toBundle() {
Bundle b = new Bundle();
b.putString("SomeKey", "SomeValue");

return b;

}

Then pass this bundle with INTENT. Now you can recreate your class object by passing bundle like

  public CustomClass(Context _context, Bundle b) {
context = _context;
classMember = b.getString("SomeKey");

}

Declare this in your Custom class and use.

share|improve this answer
Preferable to direct Parcelable implementation, IMHO. Bundle implements Parcelable by itself so you still have the performance gain while avoiding all the trouble implementing it yourself. Instead, you can use key-value pairs to store and retrieve the data which is more robust by far than relying on mere order. – Risadinha May 6 at 13:42
Parcelable seems complicated to me, in my above answer I am using toBundle method from class on it's object so object is converted to bundle and then we can use constructor to convert bundle to class object. – om252345 May 8 at 9:32

thnks...for parcelable help bt i found one more optional solution

 public class getsetclass implements Serializable {
        private int dt = 10;
    //pass any object, drwabale 
        public int getDt() {
            return dt;
        }

        public void setDt(int dt) {
            this.dt = dt;
        }
    }

In Activity One

getsetclass d = new getsetclass ();
                d.setDt(50);
                LinkedHashMap<String, Object> obj = new LinkedHashMap<String, Object>();
                obj.put("hashmapkey", d);
            Intent inew = new Intent(SgParceLableSampelActivity.this,
                    ActivityNext.class);
            Bundle b = new Bundle();
            b.putSerializable("bundleobj", obj);
            inew.putExtras(b);
            startActivity(inew);

Get Data In Activity 2

 try {  setContentView(R.layout.main);
            Bundle bn = new Bundle();
            bn = getIntent().getExtras();
            HashMap<String, Object> getobj = new HashMap<String, Object>();
            getobj = (HashMap<String, Object>) bn.getSerializable("bundleobj");
            getsetclass  d = (getsetclass) getobj.get("hashmapkey");
        } catch (Exception e) {
            Log.e("Err", e.getMessage());
        }
share|improve this answer
good answer, but increase your Coding Standards... +1 though for bringing Serializable in the competition however Parcellables are a lot faster... – Amit May 29 '12 at 6:00
thnks for ur comment.. – user1140237 May 29 '12 at 6:13

The simplest would be to just use the following where the item is a string:

intent.putextra("selected_item",item)

For receiving:

String name = data.getStringExtra("selected_item");
share|improve this answer
its for string , integer and etc only but i want the object and using static object its only possible. – UMAR Jun 25 '10 at 5:28

I struggled with the same problem. I solved it by using a static class, storing any data I want in a HashMap. On top I use an extension of the standard Activity class where I have overriden the methods onCreate an onDestroy to do the data transport and data clearing hidden. Some ridiculous settings have to be changed e.g. orientation-handling.

Annotation: Not providing general objects to be passed to another Activity is pain in the ass. It's like shooting oneself in the knee and hoping to win a 100 metres. "Parcable" is not a sufficient substitute. It makes me laugh... I don't want to implement this interface to my technology-free API, as less I want to introduce a new Layer... How could it be, that we are in mobile programming so far away from modern paradigm...

share|improve this answer

you can use putExtra(Serializable..) and getSerializableExtra() methods to pass and retrieve objects of your class type; you will have to mark your class Serializable and make sure that all your member variables are serializable too...

share|improve this answer

Your class must implements Serializable.

public class MY_CLASS implements Serializable

Once done you can send an object on putExtra

intent.putExtra("KEY", MY_CLASS_instance);

startActivity(intent);

To get extras you only have to do

Intent intent = getIntent();
MY_CLASS class = (MY_CLASS) intent.getExtras().getSerializable("KEY");

I hope it helps :D

share|improve this answer
up vote 0 down vote accepted

the most easiest solution i found is.. to create a class with static data members with getters setters.

set from one activity and get from another activity that object.

activity A

mytestclass.staticfunctionSet("","",""..etc.);

activity b

mytestclass obj= mytestclass.staticfunctionGet();
share|improve this answer
This is not generic enough to support an arbitrary class. What are you going to do if the custom object has a file reference in it? Do you want to pass the name or process the content? Parcelable will give one such options via the flag settings. – mobibob Aug 16 '10 at 16:52
yes parcelable is alternative solution to that. – UMAR May 9 '11 at 13:02
1  
or creata serializable class to pass to another activity whatever you want to pass. – UMAR May 9 '11 at 13:03
4  
Just remember not to put big fat objects. The lifetime of that object will be the same as the lifetime of the application. And never ever store views. This method also guarantees memory leaks. – Reno Sep 17 '11 at 19:07
1  
This answer is useful but not a better solution in terms of memory and resource optimization – Atul Bhardwaj Jul 13 '12 at 6:11

Another way to do this is to use the Application object (android.app.Application). You define this in you AndroidManifest.xml file as:

<application
    android:name=".MyApplication"
    ...

You can then call this from any activity and save the object to the Application class.

In the FirstActivity:

MyObject myObject = new MyObject();
MyApplication app = (MyApplication) getApplication();
app.setMyObject(myObject);

In the SecondActivity, do :

MyApplication app = (MyApplication) getApplication();
MyObject retrievedObject = app.getMyObject(myObject);

This is handy if you have objects that have application level scope i.e. they have to be used throughout the application. The Parcelable method is still better if you want explicit control over the object scope or if the scope is limited.

This avoid the use of Intents altogether, though. I don't know if they suits you. Another way I used this is to have int identifiers of objects send through intents and retrieve objects that I have in Maps in the Application object.

share|improve this answer
It is not the right way to do things since the objects may be variable ,yours may work if you talk about static object along the life cycle of the app , but some times we need passiing objects that may generated using webservice or so stackoverflow.com/a/2736612/716865 – Muhannad May 1 at 12:38
I've used it successfully with objects generated from webservices by having an application scope Map where the objects are stored and retrieved by using an identifier. The only real problem with this approach is that Android clears memory after a while so you have to check for nulls on your onResume (I think that Objects passed in intents are persisted but am not sure). Apart from that I don't see this as being significantly inferior. – Saad Farooq May 2 at 2:38

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.