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

link|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
1  
Here is the tutorial for same: goo.gl/Xkdgb – Paresh Mayani Oct 17 '11 at 11:31
@Paresh: the link you provided is broken. could you plz provide an alternative? – antiplex Jan 25 at 17:23
feedback

9 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");
link|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
Parcel has other methods for writing data types such as strings. In the case of a JSONObject you could put it back to JSON and write it as a String. If the object is Serializable and you don't have the access to make it Parcelable, maybe you could serialize it and deserialize it when you unparcel the top-level object? I haven't done this before, just a guess. – Rob Lourens Nov 2 '11 at 18:09
feedback

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.

link|improve this answer
Why this got a -1? Can someone explain what is wrong? – Macarse Apr 13 '10 at 21:06
4  
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
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
as iam using gson in my app this is a really easy and nice way! – Lars Dec 8 '11 at 9:22
feedback

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.

link|improve this answer
feedback

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> 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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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());
        }
link|improve this answer
feedback
up vote 1 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();
link|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
or creata serializable class to pass to another activity whatever you want to pass. – UMAR May 9 '11 at 13:03
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
feedback

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");
link|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
feedback

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...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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