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

what is difference between Parcelable and Serialization used in android

I want to know exact , whether should I used parcelable or serialization technique for sending data from one activity to …

android serializable parcelable
How To: Parcel a bitmap in Android

I have a serialized class which I want to add a bitmap to, but Bitmap doesn't support serialize. Instead I …

android bitmap parcelable parcel
Android Unit Testing: Bundle/Parcelable

How do you unit test Parcelable? I created a Parcelable class, and wrote this unit test TestClass test = new TestClass(); …

android unit-testing bundle parcelable
Unmarshalling errors in Android app with custom parcelable classes

For my Android application, I get several unmarshalling errors although I think I've done everything that is needed to properly …

android exception parcelable runtimeexception
List<String> readStringArray in Parcelable

Most of my Parcelable is working; Simple things like out.writeString, out.writeInt, in.readString() etc are working perfectly. My …

android parcelable
How to Pass Drawable using Parcelable

I have a class where i have an Drawable as an member. This class i am using for sending data …

android parcelable
Is using Serializable in Android bad?

I've been reading a lot of posts and articles extolling the speed of Parcelable over Serializable. I've been using both …

android serializable parcelable
Android | Unmarshalling Unknown Type while using Parcelable Data in Bundles

I have a Problem with Parcelable Data in an ArrayList sending via two Activities using Android.Bundle I have two …

android exception unmarshalling parcelable
Android - Save Parcelable data into a file

I used to use Serializable objects to save them in filesytem and read them in order to do whatever I …

android gson parcelable serializable
Parcel.readException passing an object to remote service

I wrote a remote service that the clients can log on with the usual mechanisms of IPC provided by Android …

android service parcelable