How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?
|
| |||||||||
feedback
|
|
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:
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
Then you can pull them back out with getParcelableExtra():
| |||||||
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 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. | |||||||||||||
feedback
|
|
You can use android BUNDLE in this like this. Create a Bundle from your class like
} Then pass this bundle with INTENT. Now you can recreate your class object by passing bundle like
} Declare this in your Custom class and use. | ||||
|
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:
| ||||
|
feedback
|
|
if your object class implements Serializable, you don't need to do anything else, you can pase a serializable object. | ||||
|
feedback
|
|
thnks...for parcelable help bt i found one more optional solution
In Activity One
Get Data In Activity 2
| ||||
|
feedback
|
|
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
activity b
| |||||||||
feedback
|
|
The simplest would be to just use the following where the item is a string:
For receiving:
| ||||
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... | ||||
|
feedback
|