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

Size limitation on attached Parcelable?

I want to know is there any size limitation on Parcelable that attached to an Intent? I Read some docs …

android android-intent parcelable android-bundle
Bad magic number for Bundle in Android

I'm passing data from one activity to other activity with this code: @Override public void execute(List<Report> …

java android parcelable
Android: convert Parcelable to JSON

I am working with socket.io library which emits messages to the socket.io server. The server expects JSON objects, …

android json gson parcelable parceler
Is it possible to parcel a generic class?

I'm trying to create public class MyClass<T extends Parcelable> implements Parcelable. I'm having trouble implementing Parcelable. Is …

java android generics parcelable parcel
AIDL unable to find the definition of a Parcelable class

I have the following project structure. My StockInfo.java is perfectly fine. StockInfo.java (No error) package org.yccheok.jstock.…

android class parcelable aidl
Problem in implementing Parcelable containing other Parcelable

I'm implementing Parcelable class that has another Parcelable insde. In OuterParcelable class: @Override public void writeToParcel(Parcel dest, int flags) { …

android bundle unmarshalling classnotfoundexception parcelable