The parcelable tag has no wiki summary.
18
votes
5answers
2k views
Benefit of using Parcelable instead of serializing object
As I understand, Bundle and Parcelable belongs to the way android performs serialization in. It is used for example in passing data between activities. But I wonder, if there are any benefits in using ...
13
votes
2answers
4k views
How can I pass a Bitmap object from 1 activity to another
In my activity , I create a Bitmap object, and I need to launch another activity,
How can I pass this Bitmap object from the sub-activity (the one which is going to be launched)?
Thank you.
9
votes
6answers
7k views
Problem unmarshalling parcelables
I've got a few classes that implement Parcelable and some of these classes contain each other as properties. I'm marshalling the classes into a Parcel to pass them between activities. Marshalling them ...
8
votes
2answers
88 views
Why is it possible to write a boolean array to a parcel but not a boolean?
In the documentation for the Parcel it states a method exists
public final void writeBooleanArray (boolean[] val)
But there is no method for writeBoolean(boolean val)
There also exists:
public ...
7
votes
2answers
834 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 ...
6
votes
3answers
568 views
Why does saving a Hashtable of non-Parcelable objects in onSaveInstanceState() sometimes work?
After going through an introductory Android programming book, I wanted to alter the example application in order to solidify my understanding of some topics that weren't really covered. In making the ...
5
votes
1answer
767 views
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 and the binding seems to work. The problem arises when I go to call a method that I have to ...
5
votes
1answer
3k views
Is it possible to create a HashMap that is Parcelable on Android?
I am trying to extend HashMap as a Parcelable and I got the syntax to compile, however, at runtime it throws an exception and returns a null pointer trying to un-marshal the data.
The sender has to ...
5
votes
1answer
1k views
Using Parcelable with circular references
It appears that Parcelable doesn't gracefully handle circular references like Serializable does. In the following example, the Serialization of Bar works just fine, but writing it to a Parcel causes ...
4
votes
4answers
1k views
Passing JSONObject into another activity
I'm hitting an external API that's returning JSON data (new dvd titles). I'm able to parse out the JSON and list each dvd title and other dvd information into a ListView just fine. I was also able ...
4
votes
2answers
4k views
Arraylist in parcelable object
I have seen many parcelable examples so far, but for some reason I can't get it to work when it gets a bit more complex.
I have a Movie object, which implements Parcelable. This book object contains ...
4
votes
1answer
3k views
Android: Pass List<GeoPoint> to another Activity
I have an ArrayList of type GeoPoint.
private List<GeoPoint> points = new ArrayList<GeoPoint>();
I want to pass points to another Activity and retrive the data in that activity. How do ...
4
votes
2answers
663 views
Does a serializable object always get serialized when put in a bundle?
We were wondering if when using Bundle with serializable or parcelable objects, when does the marshalling actually happen? As soon as you put it in the bundle? Since bundles are mostly used to simply ...
4
votes
3answers
7k 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 ...
3
votes
2answers
55 views
How to make an object accessible to all activities in an Android program?
I have an application which consists of two activities/screens and a java class from which i create objects.
I need to use an object I created on the first activity (instanciating the .java class) on ...
3
votes
1answer
184 views
Why use parcelable when you can perform the same task using static variables?
i am new in android and java ... i am reading from couples of day about android parceling tutorial for transfer data or variables values from one activity to other or one class to other ... but i am ...
3
votes
2answers
211 views
How to break an object into a byte[]?
How do I break an object --- a Parcelable to be more specific; actually it's a bundle but the point is the same --- into a byte[]? I thought that the way I was doing it was a good solution but ...
3
votes
1answer
2k views
Android: Parcelable.writeToParcel and Parcelable.Creator.createFromParcel are never called
I'm totally new to posting questions on here, however I have been reading a lot on here for years. Normally I always am able to find my answers by thoroughly searching the web, but this time I am at a ...
3
votes
1answer
1k views
Nested Parcelling : RuntimeException - Unmarshalling unknown type code 3211319 at offset 440
I need to send some data to an Activity, which may be running in different context.
For this I created a class say A, which has an ArrayList of datatype say B as its one of instance member . I ...
3
votes
1answer
920 views
Parcelable and inheritance in Android
I got an implementation of Parcelable working for a single class that involves no inheritance. I have problems figuring out the best way to implement the interface when it come to inheritance. Let's ...
3
votes
1answer
1k views
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 for a while to pass data between Activities through Intents, and have yet to ...
2
votes
1answer
66 views
Mono for Android, Parcelable & C# - Documentation is Wrong
UPDATE:
IParcelable apparently cannot currently be implemented in Mono for Android. In the end I used the .NET serialization in the class, and then parceled/bundled the serialized data in the ...
2
votes
1answer
30 views
Handling derrived objects when using Parceable
Lets say that you have two classes ObjA and ObjB. ObjB is derived from ObjA.
If your implementing parcelable in ObjB, do you also need to parcel ObjA also??
I have a project that when I tried the ...
2
votes
2answers
102 views
I dont get why this ClassCastException occurs
// Application ...
Intent i = new Intent();
i.putExtra(EXTRA_FILE_UPLOAD_URIS, mGalleryAdapter.getItems());
Uri[] getItems() { return mItems; }
// Service ...
...
2
votes
1answer
94 views
How to reuse the Parcelable object in Android?
I have the class that implements Parcelable interface. That contain HashMap, this HashMap contains bitmap images. I need this HashMap for all my activities. So I used Parcelable. Look on my Parcelable ...
2
votes
1answer
35 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 ...
2
votes
3answers
180 views
How to pass ArrayList<my_custom_class> to an other activity?
this question has 2 parts
I'm trying to pass an ArrayList from one activity to another. this arraylist contains some objects instanciated from a class that i've created(contain some strings and a ...
2
votes
2answers
164 views
Trouble using parcels to send Object of unknown datatype
I asked a question the other day regarding sending an object to an activity using an intent as a parcel but I am unsure how to do it in my situation. I have a variable of type object Object x; which ...
2
votes
2answers
279 views
Shallow copy of an object in an intent in android
I have a few objects I want to pass to other activities through intents. However, they only need to be shallow copies of the other object, as they are only going to be read (and even if they were ...
2
votes
4answers
3k views
How to send objects through bundle
I need to pass a reference to the class that does the majority of my processing through a bundle.
The problem is it has nothing to do with intents or contexts and has a large amount of non-primitive ...
2
votes
0answers
125 views
Efficiency of Parcelable for inproc communication
I want to pass a huge object (e.g. Bitmap) from one activity to another inside one process. If I put it into the Bundle as Parcelable, will Android really serialize the object or pass it by reference?
...
2
votes
1answer
469 views
Make Class Parcelable error
I am trying to make Task parcelable to put into an bundle to pass from my service to activity but I'm having a little bit of trouble working with the ArrayList of my custom type.
Task:
@Override
...
2
votes
1answer
417 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();
...
2
votes
3answers
2k views
Put an object in Handler message
I need to download an image from the internet,
in a different thread,
and then send that image object in the handler message, to the UI thread.
I already have this:
...
Message msg = ...
2
votes
1answer
601 views
How to use Parcelable if class requires additional parameters in construcor
I'm trying to create class with generics that will have ability to serialize its state using Parcelable interface.
The problem is that class has to contain constructor with single parameter - Parcel, ...
2
votes
5answers
4k views
Android app resets on orientation change, best way to handle?
So I am making a basic chess app to play around with some various elements of android programming and so far I am learning a lot, but this time I am lost.
When the orientation of the emulator changes ...
1
vote
4answers
46 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 ...
1
vote
1answer
132 views
Make a class parcelable which contains Custom object list
I am getting error while making a list object parsable(i think the error occured while reading the object)
here is my code
public class TestSample implements Parcelable {
int intValue;
...
1
vote
0answers
130 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 ...
1
vote
1answer
143 views
Android parcelable error
I'm having a problem with the android parcelable.
I have the following classes :
Cities.java
package project.login;
import org.osmdroid.util.GeoPoint;
import ...
1
vote
3answers
313 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 ...
1
vote
0answers
224 views
android: issue in parsing Parcelable object from service to activity using intent
i tried to pass the "Order" (see below for Order object details) object from android service (IntentService) to activity using android intent,
i tried in the following way:
in the service class:
...
1
vote
1answer
117 views
Android - Problem with the Serializable interface
I have been using the Serializable interface to pass an object from one activity to another. I am using putExtra on the sender side and getSerializable on the receiver side. Everything works fine but ...
1
vote
0answers
403 views
Passing a Parcelable Object which contains an array of Parcelable Objects
I'd like to pass a Parcelable object which contains an array of Parcelable objects; my problem is that despite the second activity starts the return object is null. I call the Activity this way:
...
1
vote
2answers
402 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 ...
1
vote
1answer
227 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
1answer
476 views
Android Parcelable Problem with array
Hi everybody i have build a class that implements Parcelable but one of the arraylist attributes i have define gets empty when i read the class. Here is the code
package roblestech.laCartelera;
...
1
vote
0answers
64 views
Android: how to Parcel complex classes and their subclasses
Supose these simple classes:
public class Class_A
{
// no fields
}
public class Class_B extends Class_A
{
public float field_1;
public String / int / float / etc...; // dozens of fields
...
1
vote
1answer
260 views
Storing a Parcelable object to a File in Android
I am trying to store an ArrayList of ResolveInfo objects to a file so that I don't have to rebuild it each time my application launches (about 4-6 seconds) ResolveInfo objects are Parcelable, but not ...
1
vote
0answers
110 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 ...