Top "Parcelable" questions

parcelable refers to the capability of an object to be converted to a parcel, a container for reading and writing data of various type, using type specific rather than generic serialization

How can I make my custom objects Parcelable?

I'm trying to make my objects Parcelable. However, I have custom objects and those objects have ArrayList attributes of other …

android parcelable
Android: Difference between Parcelable and Serializable?

Why does Android provide 2 interfaces for serializing objects? Do Serializable objects interopt with Android Binder and AIDL files?

android parcelable serializable
How to send objects through bundle

I need to pass a reference to the class that does the majority of my processing through a bundle. The …

android serialization android-activity bundle parcelable
How can I pass a Bitmap object from one activity to another

In my activity, I create a Bitmap object and then I need to launch another Activity, How can I pass …

java android bitmap parcelable
How to pass ArrayList of Objects from one to another activity using Intent in android?

I have the following in code in my onClick() method as List<Question> mQuestionsList = QuestionBank.getQuestions(); Now I …

android android-intent parcelable
How to read/write a boolean when implementing the Parcelable interface?

I'm trying to make an ArrayList Parcelable in order to pass to an activity a list of custom object. I …

android parcelable
Android: How to pass Parcelable object to intent and use getParcelable method of bundle?

Why bundle has getParcelableArrayList, getParcelable methods; but Intent has only putParcelableArrayListExtra method? Can I transmit only object<T>, …

android android-intent bundle parcelable
Read & writing arrays of Parcelable objects

I have following class which reads and writes an array of objects from/to a parcel: class ClassABC extends Parcelable { …

android parcelable
Passing arraylist of objects between activities

I am trying to pass an arraylist of objects between two activities, but my app crushes at the second activity. …

android android-intent arraylist android-activity parcelable
Passing JSONObject into another activity

I'm hitting an external API that's returning JSON data (new dvd titles). I'm able to parse out the JSON and …

android android-activity parcelable