0
votes
3answers
80 views

Is using Parcelable the right way to send data between applications?

I am trying to understand how to communication between applications in Android - not just between Activity instances. I set up a 'client' that sends a Messenger obj to a Service (in the Intent sent to ...
1
vote
1answer
144 views

ClassNotFoundException when unmarshalling and really don't know why

FIXED: ANSWER AT BOTTOM I am writing an android app for a project and im trying to use parcelable objects. I have 2 parcalable classes. The first is a normal class with only 2 arguments. The second ...
0
votes
1answer
87 views

Trying to retrieve data from parcel

I have an Order Object that contains an ArrayList of MenuItem Objects. Both classes implement the Parcelable interface. When I attempt to retrieve the object from the Intent in the new activity I get ...
0
votes
2answers
2k views

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 Activities (A and B). In Aaaa.class: ArrayList<Model> mModelList = new ...
1
vote
2answers
3k views

Difficulty with unmarshalling in parcelable

Here is my code of writing to a parcel public void writeToParcel(Parcel dest, int flags) { dest.writeString(poiDescription); dest.writeString(latitude); ...
2
votes
3answers
802 views

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) { Bundle tmp = new Bundle(); ...