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

Cannot pass custom Object in an Intent: The Method Put Extra is Ambiguous for the type Intent

If I try to write Car myCarObject=getCar(); Intent details = new Intent(Start.this, DetailsCar.class); details.putExtra("Car", myCarObject); …

android android-intent parcelable
Pass ArrayList<? implements Parcelable> to Activity

I have searched a few topics but not found a solution to my problem. public class Series implements Parcelable { private …

android arraylist parcelable
how to properly implement Parcelable with an ArrayList<Parcelable>?

I am having trouble making my class Parcelable. The trouble is, I am trying to write to the parcel a …

java android serialization parcelable
How to save custom ArrayList on Android screen rotate?

I have an ArrayList with custom objects that I would like to be able to save and restore on a …

android object arraylist parcelable screen-rotation
Is there a convenient way to create Parcelable data classes in Android with Kotlin?

I'm currently using the excellent AutoParcel in my Java project, which facilitates the creation of Parcelable classes. Now, Kotlin, which …

android parcelable kotlin
Android Class Parcelable with ArrayList

I have an android project where I have a class. In that class is an ArrayList<Choices>. I …

android class arraylist parcelable
Help with passing ArrayList and parcelable Activity

So I've been googling most of yesterday and last nite and just can't seem to wrap my head around how …

android android-activity parcelable
Problem unmarshalling parcelables

I've got a few classes that implement Parcelable and some of these classes contain each other as properties. I'm marshalling …

java android marshalling parcelable
Put an object in Handler message

I need to download an image from the internet, in a different thread, and then send that image object in …

android handler parcelable
Benefit of using Parcelable instead of serializing object

As I understand, Bundle and Parcelable belongs to the way Android performs serialization in. It is used for example in …

android serialization bundle parcelable