I am trying to work on sending an object of my customer class from one Activity and display in another Activity.

The code for the customer class:

public class Customer {

    private String firstName, lastName, Address;
    int Age;

    public Customer(String fname, String lname, int age, String address) {

        firstName = fname;
        lastName = lname;
        Age = age;
        Address = address;

    }

    public String printValues() {

        String data = null;

        data = "First Name :" + firstName + " Last Name :" + lastName
        + " Age : " + Age + " Address : " + Address;

        return data;

    }

}

I want to send its object from one Activity to another and then display the data on the other Activity.

How can I achieve that?

link|improve this question

are you going to accept any of the answers? – Samuh May 11 '10 at 12:34
feedback

13 Answers

up vote 55 down vote accepted

One option could be letting your custom class implement Serializable interface and then you can pass object instances in intent extra using putExtra(Serializable..) variant of the Intent#putExtra() method.

PSEUDO code:

//to pass :
   intent.putExtra("MyClass", obj);  

// to retrieve object in second Activity
getIntent().getSerializableExtra("MyClass");
link|improve this answer
I have a same situation, after I implement Serializable, do I have to do anything special in my class, do I have to implement some methods? – Pentium10 May 27 '10 at 13:40
6  
-1 because Serializable is not really the best solution. You should use Parcelable instead. – Octavian Damiean May 6 '11 at 13:51
7  
@OD: In my defense, I never said this was the best option; OP just asked for alternatives and I suggested one. Thanks anyways. – Samuh May 9 '11 at 21:09
7  
Why is Serializable not a good option? It's a well-known interface, there's a good chance that peoples' classes may already implement it (ArrayList, for example, is already Serializable). Why should you have to change your data objects to add extra code simply to pass them from one class to another? That seems like a bad design. I can imagine there may be some performance impact at some level, but I'd think that in 99% of cases, people are passing small amounts of data, and they won't care. Simpler and portable is sometimes better, too. – Nate Aug 21 '11 at 23:48
3  
@Sander: Is this answer (stackoverflow.com/questions/2139134/…) wrong then? He says that Parcelable IS specifically designed for that purpose (and much faster than Serializable). I am a confused. – Slauma Oct 2 '11 at 16:26
show 3 more comments
feedback

implement your class with Serializable. Let's suppose that this is your entity class:

import java.io.Serializable;

@SuppressWarnings("serial") //with this annotation we are going to hide compiler warning
public class Deneme implements Serializable {

public Deneme(double id, String name){
    this.id = id;
    this.name = name;
}

public double getId() {
    return id;
}
public void setId(double id) {
    this.id = id;
}
public String getName() {
    return this.name;
}
public void setName(String name) {
    this.name = name;
}

private double id;
private String name;

}

we are sending the object called dene from X activity to Y activity. Somewhere in X activity;

Deneme dene = new Deneme(4,"Mustafa");
Intent i = new Intent(this, Y.class);
i.putExtra("sampleObject", dene);
startActivity(i);

In Y activity we are getting the object.

Intent i = getIntent();
Deneme dene = (Deneme)i.getSerializableExtra("sampleObject");

that's it.

link|improve this answer
It was really helpfull for me. Thanks... But when receiving the passed object, the syntax Should be [ Deneme dene = (Deneme)i.getSerializableExtra("sampleObject"); ] ... Is it ??? – JibW Feb 21 at 15:39
thank you and yes I've changed it :) – Mustafa Güven Feb 22 at 7:57
feedback

You could also write the object's data into temporary Strings and ints, and pass them to the activity. Of course that way, you get the data transported, but not the object itself. But if you just want to display them, and not use the object in another method or something like that, it should be enough. I did it the same way to just display data from one object in another activity.

String fName_temp   = yourObject.getFname();
String lName_temp   = yourObject.getLname();
String age_temp     = yourObject.getAge();
String address_temp = yourObject.getAddress();

Intent i = new Intent(this, ToClass.class);
    i.putExtra("fname", fName_temp);
    i.putExtra("lname", lName_temp);
    i.putExtra("age", age_temp);
    i.putExtra("address", address_temp);
startActivity(i);   

You could also pass them in directly instead of the temp ivars, but this way it's clearer, in my opinion. Additionally, you can set the temp ivars to null so that they get cleaned by the GarbageCollector sooner.

good luck!

On a side note: override toString() instead of writing your own print method.

link|improve this answer
7  
get your data back again with: String fName = getIntent().getExtras().getInt("fname"); – Alister Oct 30 '10 at 5:17
1  
To get the data back: Bundle extras = getIntent().getExtras(); String val = extras.getString("fname"); – Eric Leschinski Jan 1 at 1:00
feedback

While calling an activity

Intent intent = new Intent(fromClass.this,toClass.class).putExtra("myCustomerObj",customerObj);

In toClass.java receive the activity by

Customer customerObjInToClass = getIntent().getExtras().getParcelable("myCustomerObj");

make sure that customer class implements parcelable

 public class Customer implements Parcelable {

    private String firstName, lastName, Address;
        int Age;

    /* all your getter and setter methods */

    public Customer (Parcel in) {
            readFromParcel(in);
        }

        public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
            public LeadData createFromParcel(Parcel in) {
                return new Customer (in);
            }

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

    @Override
        public void writeToParcel(Parcel dest, int flags) {

            dest.writeString(firstName);
            dest.writeString(lastName);
                    dest.writeInt(Address);
            dest.writeString(Age);
    }

        private void readFromParcel(Parcel in) {

            firstName= in.readString();
            lastName= in.readString();
            Address= in.readString();
            Age= in.readInt();
    }
link|improve this answer
Adhavan, I got a question. When you create the first Intent class, you pass in fromClass.this as the first argument. Is there a way to retrieve this object in the receiving activity class? – miliu Sep 10 '11 at 21:28
1  
Miliu, fromClass fr = (fromClass) getParent(); is this what u needed? – Adhavan Sep 12 '11 at 8:23
Adhava, I actually did this, but fr is null. Any idea why? – miliu Sep 25 '11 at 3:08
miliu,please share your exception trace by that we can look into it. – Adhavan Sep 26 '11 at 8:06
feedback

The best way is to have a class(call it Control) in your application that will hold a static variable of type 'Customer' (in your case). initialize the variable in your Activity A. eg: Control.Customer = CustomerClass; then go to Activity B and fetch it from Control class. don't forget to assign a null after using the variable otherwise memory will be wasted.

the next method could be using a Bundle, although i haven't tried it out.

link|improve this answer
1  
maybe is not the best solution but it is the easiest by far... – Emilio Sep 7 '11 at 12:58
feedback

If you choose use the way Samuh describes, remember that only primitive values can be sent. Or that is values that is parcable. So, if you object contains complex objects these will not follow. E.g variables like Bitmap, HashMap etc... these are tricky to pass by the intent.

In general i would advice you to send only primitiv datatypes as extras, like String, int, boolean etc. In your case it would be: String fname, String lname, int age, String address

My opinion: More complex objects is better shared by implementing a ContentProvider, SDCard, etc. Its aslo possible to use a static variable, but this may fastly lead to error-prone code...

But again, It's just my subjective opinion.

link|improve this answer
feedback

Use a class with static fields:

public class Globals {
    public static Customer customer = new Customer();
}

Inside the activities you can use:

Activity From:

Globals.customer = myCustomerFromActivity;

Activity Target:

myCustomerTo = Globals.customer;

Its a easy way to pass information for activities.

link|improve this answer
feedback

You can try to use that class. Limitation is to do not use outside of one process.

One activity:

 final Object obj1 = new Object();
 final Intent in = new Intent();
 in.putExtra(EXTRA_TEST, new Sharable(obj1));

Other activity:

 final Sharable s = in.getExtras().getParcelable(EXTRA_TEST);
 final Object obj2 = s.obj();

-

public final class Sharable implements Parcelable {

private Object mObject;

public static final Parcelable.Creator<Sharable> CREATOR = new  Parcelable.Creator<Sharable>() {
    public Sharable createFromParcel(Parcel in) {
        return new Sharable (in);
    }

    @Override
    public Sharable[] newArray(int size) {
        return new Sharable[size];
    }
};

public Sharable(final Object obj) {
    mObject = obj;
}

public Sharable(Parcel in) {
    readFromParcel(in);
}

Object obj() {
    return mObject;
}

@Override
public int describeContents() {
    return 0;
}

@Override
public void writeToParcel(final Parcel out, int flags) {
    final long val = SystemClock.elapsedRealtime();
    out.writeLong(val);
    put(val, mObject);
}

private void readFromParcel(final Parcel in) {
    final long val = in.readLong();
    mObject = get(val);
}

/////

private static final HashMap<Long, Object> sSharableMap = new HashMap<Long, Object>(3);

synchronized private static void put(long key, final Object obj) {
    sSharableMap.put(key, obj);
}

synchronized private static Object get(long key) {
    return sSharableMap.remove(key);
}

}

link|improve this answer
feedback
public class MyClass implements Serializable{
 here your instance variable
}

Now You want to pass Object of this class in startActivity then simple use this
Bundle b = new Bundle();
b.putSerializable("name",myClassObject);
intent.putExtras(b);

This is Work here because MyClass is Implements Serializable

link|improve this answer
feedback

Yeah, using a static object is by far the easiest way of doing this with custom non-serialisable objects.

link|improve this answer
feedback

@alistair Yeah, I think I actually agree with you. Making those objects static is the better workaround if it's simply impractical to keep invoking putExtra() for every property you'd like to pass on. For example, right now, I want to pass an ArrayList that contains objects. I might as well make my ArrayList static instead.

link|improve this answer
feedback

Using global static variables is not good software engineering practice. Converting object's fields into primitive data types can be a hectic job. Using serializable is ok but its not performance efficient on android platform. Parcelable is specifically designed for androidand you should use it. here is simple example Passing custom objects between activities #android

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.