java Programming Glossary: parcel
Problem unmarshalling parcelables http://stackoverflow.com/questions/1996294/problem-unmarshalling-parcelables parcelables I've got a few classes that implement Parcelable and some of these classes contain each other as properties... other as properties. I'm marshalling the classes into a Parcel to pass them between activities. Marshalling them TO the Parcel.. to pass them between activities. Marshalling them TO the Parcel works fine but when I try to unmarshall them I get the following..
AndroidRuntime error: Parcel: unable to marshal value http://stackoverflow.com/questions/3818745/androidruntime-error-parcel-unable-to-marshal-value error Parcel unable to marshal value I am trying to pass a HashMap to a.. startActivty is called I get a runtime error stating that Parcel unable to marshal value com.appName.Liquor. Liquor is a custom..
Elegant way to read file into byte[] array in Java [duplicate] http://stackoverflow.com/questions/6058003/elegant-way-to-read-file-into-byte-array-in-java in Java I want to read data from file and unmarshal it to Parcel. In documentation it is not clear that FileInputStream has method.. array chunks.clear finally I can unmarshall this data to Parcel Parcel parcel Parcel.obtain parcel.unmarshall rawdata 0 rawdata.length.. chunks.clear finally I can unmarshall this data to Parcel Parcel parcel Parcel.obtain parcel.unmarshall rawdata 0 rawdata.length..
how to properly implement Parcelable with an ArrayList<Parcelable>? http://stackoverflow.com/questions/7042272/how-to-properly-implement-parcelable-with-an-arraylistparcelable to properly implement Parcelable with an ArrayList Parcelable I am having trouble making.. to properly implement Parcelable with an ArrayList Parcelable I am having trouble making my class Parcelable. The trouble.. ArrayList Parcelable I am having trouble making my class Parcelable. The trouble is I am trying to write to the parcel a member..
|