1
vote
3answers
66 views

Saving Parcelable data

I have a class which implements Parcelable, and could not implement Serializable because it contains some basic Android classes that I can not modify. Some of the objects in this class are for ...
0
votes
1answer
60 views

pass a arraylist of parcelable

I want to pass a parcelable array containing 2 objects between activites Intent i = new Intent(); i.setClass(act, ChoiceLanguage.class); for(Language ...
1
vote
2answers
199 views

How to use writeStringArray() and readStringArray() in a Parcel

I recently came across a very stupid (at least from my point of view) implementation inside Androids Parcel class. Suppose I have a simple class like this class Foo implements Parcelable{ ...
1
vote
1answer
81 views

Parcelable's variables have always the value 0.0 after Parcel

After I Parcel my Parcelable Object and want to return it back, the values of the variables are all 0.0! Any Idea why? Here is my Parcelable Class: public class ParcelData implements Parcelable { ...
2
votes
1answer
301 views

How to read/write a List<Date> to a Parcel?

I have a class that implements Parcelable. What's the best way to read/write a List of Date objects to a Parcel? This is how you can do it for a single Date object: date = new ...
1
vote
0answers
51 views

how to clone a Parcel object

I want to clone a Parcel object (not parcelable). I can't use clone() method since it is protected. I also can't call it using reflection since Parcel class doesn't implement 'clonable' I tried to ...
2
votes
1answer
142 views

Unparcel Error Android

I am running into an issue where instantiating an Object from a Parcel is throwing a NullPointerException. My Class Contact implements Parcelable, contains a CREATOR, and all the hookups seem to work. ...
0
votes
0answers
39 views

Is there a library for parceling objects using reflection in Android?

Is there a library that is capable of parceling objects in Android using reflection? Something similar to Gson but for Parcelization.
1
vote
2answers
168 views

Android Parcelable Cannot instantiate the type

I am working on an Android App, and I am trying to pass information using Parcelable. So here's what I've got. import android.os.Parcel; import android.os.Parcelable; abstract class Role implements ...
0
votes
1answer
117 views

Best practice for replacinng the Parcelable interface

I usually use the interface Parcelable to pass data from one Activity to another. It is working fine if the data isn't that much. However, there are cases where I have to pass a lot of data to an ...
2
votes
1answer
156 views

Android Parcelable Takes Up More Memory

The question is simple, if I make an object parcelable, and put it into a bundle and create a fragment using the bundle. Does the object get cloned or is it referenced. The context. Ive got an ...
0
votes
2answers
70 views

How many data a Parcel can store?

I encountered a problem using Parcelables to share Informations between Activitys. I have no Problem with the implementation, but with its behavior on some phones. It seems, that the information ...
0
votes
1answer
133 views

Android is Parcelable data available after garbage collection?

Is parcelable data persistent? I have some variables that I destroy in android lifecycle functions such as onDestroy() , but what about things written to parcelable? Ultimately I would want to pass ...
1
vote
1answer
2k views

BadParcelableException: ClassNotFoundException when unmarshalling: (empty classname)

I have a class named AllStatStruct. This class contains three attributes, which are objects of my classes StatStructCycle, StatStructHistory and MatrixStruct. Every class extends the class DataStruct ...
0
votes
1answer
368 views

Android parcel, stored in memory or on disk? How to store on disk

I see parcel and serializable being used kind of interchangeably, or at least un-intuitively in the same context. Can you clarify some things for me? are parcel's persistent storage (on the disk) or ...
0
votes
1answer
188 views

Syntax for creating a Object implementing Parcelable from getParcelableExtra(intent_name)

I am implementing the DataDroid model of RESTful communication and I have come across a compiler error while implementing my SearchCriteria. The problem is that in order to pass the SearchCriteria ...
0
votes
2answers
436 views

Writing Objects members to Parcels

So far I've been chugging along with Parcelable objects without issue, mainly because all of their members have been types that have writeX() methods associated with them. For example, I do: public ...
0
votes
1answer
609 views

Android Parcelable Parcel HashMap

I want to use Parcelable instead of Serializable in android, because it is faster and recommended. My question is, it seems i cannot parcel a LinkedHashMap, a class provided by Java, right? So for ...
6
votes
3answers
8k views

Android Parcelable and Serializable

So i know it is recommended to use Parcelable instead of Serializable in android, because it is faster. My question is, it is impossible to avoid using Serializable right? If i have a custom object i ...
0
votes
1answer
448 views

Trouble creating a Parcelable Class in Android

I'm attempting to create a Parcelable class in Android so that I can pass a ArrayList of these objects between Activities. I've followed very closely the examples found here on StackOverflow ...
2
votes
1answer
203 views

Implementing Parcelable interface in a class that is composed of other objects

I have the following code to create a basic profile within my app, it contains an object of another class which holds all of the user's performance data within arrays and various other primitive data ...
0
votes
1answer
314 views

Unable to get list elements when using parcelable objects

I have an application that has a service and an activity. My base class and list class are implementing parcelable. And the list class uses writeTypedList()/readTypedList() to parcel a custom list. ...
0
votes
2answers
773 views

Android: Having Difficulty passing an Object from one activity to another using Parcel

I've read MANY articles on how to use Parcel and I've used it in my app but it isn't working. I've just created an activity where you can connect to a computer using Sockets. I've opened a ...
2
votes
0answers
321 views

How to define parcelable of interface type in .aidl file?

I have an .aidl file that defines a single parcelable of an interface type, let's say parcelable MyInterface; Whereby MyInterface is a java interface declared in MyInterface.java that extends the ...
0
votes
1answer
674 views

Android parcelable error

I'm having a problem with the android parcelable. I am getting this Exception: 01-04 03:21:00.318: ERROR/AndroidRuntime(18973): FATAL EXCEPTION: main java.lang.RuntimeException: Parcel ...
4
votes
3answers
3k views

Putting a Bitmap into a Bundle

I want to pass a String and a Bitmap to a Service using AIDL. The Service implements this AIDL method: void addButton(in Bundle data); In my case, the Bundle contains a String and a Bitmap. The ...
2
votes
2answers
2k views

Make a custom java object Parcelable in Android

I am trying to send an object of type MyCustomObject to another activity via an intent. I know, to make the class Parcelable, I should do public class MyCustomObject implements Parcelable, but I am ...
2
votes
2answers
3k views

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 thought I'd use a parcel instead, but can't get it to work. Here's some test code using ...
2
votes
1answer
1k views

How to use Parcel.readBooleanArray()?

I'm trying to use the readBooleanArray from android.os.Parcel, but readBooleanArray returns void and therefor it's unclear to me how to use this method. I'm using the following method to write ...
1
vote
0answers
214 views

Android Bundle.containsKey throws Exception

I'm writing an Android Application. In this App the user should be able to recieve Notifications in the future. I'm using AlarmManager to send a Broadcast to my Reciever which has an Intent inside ...
1
vote
3answers
2k views

ClassNotFoundException when unmarshalling a Parcelable

I have a problem with parsing a Parcelable across an Intent. I create parcelable using Intent data = new Intent(); data.putExtra(ShoppingListAdapter.parcelName, la); setResult(Activity.RESULT_OK, ...
0
votes
1answer
587 views

Problem with Parcel // ArrayList

I am currently trying to pass an ArrayList of objects from one activity to another. After much searching, I saw that you could pass things as parcels. Here is what I ended up doing: public class ...
1
vote
1answer
231 views

Using Parcelable on a Library Class

I want to send an object between Activities. Reading up on this i have come to conclusion that using Parcelable is the best way to go as it has the least performance impacts. The reason i want to do ...
0
votes
3answers
1k views

Android - When bundling List<MyClass> use Parceling or Serializing?

How should List<MyClass> be properly passed from the main activity to a secondary activity? From what I understand, there are two ways to bundle data: Parceling and Serializing. What are the ...
20
votes
3answers
3k views

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 be overriden. But should I consider doing something useful ...
4
votes
3answers
10k views

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 to write are defined (as you'd expect) as: public class Arrival ...