Top "Parcel" questions

In Android, a Parcel is a container for a message (data and object references).

How to use Parcel in Android?

I'm trying to use Parcel to write and then read back a Parcelable. For some reason, when I read the …

android parcel
Android E/Parcel﹕ Class not found when unmarshalling (only on Samsung Tab3)

I've been unable to resolve why this error occurs, and only on a Samsung Tab3 device, running 4.4.2? It happens when …

android android-intent classnotfoundexception unmarshalling parcel
Android Parcelable and Serializable

So i know it is recommended to use Parcelable instead of Serializable in android, because it is faster. My question …

android serialization android-intent parcelable parcel
How to read and write Enum into parcel on Android?

Here is my model class: public enum Action { RETRY, SETTINGS } private int imageId; private String description; private String actionName; private …

android enums parcelable parcel
android.os.BadParcelableException: ClassNotFoundException when unmarshalling: exception

The values are getting passed and execution happens properly but i see these being thrown in logcat and i want …

android marshalling parcel
Parcel Unmarshalling unknown type code

We are getting this error in the Crash reports logged by play store. Cant replicate this in all our testing. …

android exception unmarshalling parcelable parcel
Parcelable where/when is describeContents() used?

Does anyone know where/when this method of a Parcelable is called? @Override public int describeContents() { return 0; } It has to …

android serialization parcelable parcel
How to marshall and unmarshall a Parcelable to a byte array with help of Parcel?

I want to marshall and unmarshall a Class that implements Parcelable to/from a byte array. I am well aware …

android marshalling unmarshalling parcelable parcel
Writing arrays of Parcelables to a Parcel in Android

I'm trying to write an array of objects that implement Parcelable into a Parcel using writeParcelableArray. The objects I'm trying …

java android parcelable parcel