How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent?
|
|
|||||||
|
|
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():
|
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||
|
|
if your object class implements |
||||
|
|
|
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:
|
||||
|
|
|
You can send serializable object through intent
|
||||
|
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. |
|||||
|
|
thnks...for parcelable help bt i found one more optional solution
In Activity One
Get Data In Activity 2
|
|||||
|
|
The simplest would be to just use the following where the item is a string:
For receiving:
|
||||
|
|
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... |
||||
|
|
|
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... |
||||
|
|
|
Your class must implements Serializable.
Once done you can send an object on putExtra
To get extras you only have to do
I hope it helps :D |
||||
|
|
|
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
|
|||||||||||||||||
|
|
Another way to do this is to use the
You can then call this from any activity and save the object to the In the FirstActivity:
In the SecondActivity, do :
This is handy if you have objects that have application level scope i.e. they have to be used throughout the application. The This avoid the use of |
|||||
|