The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

Holding data model in android application

Currently I'm writing android application, whose main functions are just fingerpainting on screen. The main problem is how to store application's data model. What would be the best practice? ...
0
votes
0answers
10 views

Passing Array of Base class through aidl

How can i pass the array of any base class with Parcelable. Like Array of VehicleBase class, where at run time there can be different objects in that array like car, bike, bus etc. Here VehicleBase ...
0
votes
0answers
23 views

Activity killed in background and ClassCastException when resumed?

This only happens after the activity has been in the background for some time. It does not happen if I press the "home" button and then a few seconds later reopen the app, restoring the previous ...
0
votes
0answers
19 views

ClassCastException in Parcelable, but perhaps deeper problems?

I have a field that looks like this in a class called Game private ArrayList<Question>[] questions; I am writing it in like this public void writeToParcel(Parcel parcel, int flags){ ... ...
0
votes
4answers
42 views

Send generic type arraylist data from one to another activity

I have generic tyeps of Arraylist.I have used Parcelablebut it always throw error I have used following code Content public class Content implements Parcelable { private String pc, cc, sc, uId, ...
1
vote
3answers
56 views

How to implement Parcelable for a class containing List<List<String>>?

I have a working Parcelable implementaion for all the fields in my Parcelable Class apart from List<List<String>> class Employee implements Parcelable{ List<List<String>> ...
0
votes
2answers
55 views

To pass a parcelable arraylist of objects

I trying to pass array of objects via Parcelable. But after the transfer, the data is converted into something strange O_o The transmitting part: for (int i=0; i<res.size(); i++) { ...
0
votes
1answer
35 views

Provide the code of Parcelable objects to AIDL clients

The documentation states: If you have a class that you would like to send from one process to another through an IPC interface, you can do that. However, you must ensure that the code for your ...
1
vote
2answers
78 views

Parceable encountered IOException writing serializable object

I am getting this error : FATAL EXCEPTION: main java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = game.Level) at ...
0
votes
1answer
43 views

In andorid Difference Between parcelable and Serialization? [duplicate]

can anyone please explain me what it means by the performance issue the serialization encounters and make the Parcelable an efficient way rather than serialization in android to pass an object from ...
1
vote
0answers
107 views

Parcelable Issues When Obfuscating With Proguard

My app works fine before obfuscation but when I enable proguard I get the following error: 2013-05-02 13:43:58.772 E 30138/AndroidRuntime: FATAL EXCEPTION: main java.lang.NumberFormatException: ...
0
votes
1answer
34 views

Passing data between activities with parcelable

So my app is like this. I have a list view, Categories. When a user clicks a category, a new activity, Products is launched. Some products that he can buy appear. After he selects what he wants, he ...
0
votes
1answer
37 views

What am I doing wrong in this Parcelable class?

I'm trying to start a new Activity and add a custom Parcelable object to the Intent. Apparently this does not work: Class: public class TestObject implements Parcelable{ private String mString; ...
0
votes
1answer
18 views

Is there something wrong with my Parcelable class?

I wonder if there is something wrong with my class because I can't pass extra (composed by a Note Object) from an activity to another Here is the code of my Parcelable Class: Note: public class Note ...
0
votes
1answer
35 views

Custom Parcelables over AIDL shared between Multiple APPs results in ClassNotDefError

I have three Android Projects in Eclipse: App A (hosts a Service) App B (uses Service from A) AIDL (definition and some custom parcelables) APP A launches APP B. APP B uses an Service via AIDL ...
0
votes
0answers
48 views

Parcelable generics and String

I wish to make a generic class Parcelable. Seems easy enough. Using a tuple as a simple example (JUST an example, do not comment on this specific class, some of mine will come from libraries), I can ...
0
votes
1answer
31 views

Parcelable Confusion

I am newB in Android. I was working on a problem where I came across passing custom object between Activity. I did some research and found that, if I need to either implement Serializable or ...
2
votes
0answers
39 views

Why do I sometimes need class loader in readParcelable?

Why do I sometimes need to explicitly indicate class loader when reading a Parcelable using readParcelable?
0
votes
0answers
17 views

Can a library class object lof SurfaceView be sent using aidl directly or do I need to send it through a Parcelable?

I need to send an object of surfaceView. I'm quite unclear how I should go about implementing this as a parcel, the class needs to implement Parcelable. Since I cannot modify the Library Class, how do ...
0
votes
2answers
60 views

Add a LinearLayout in bundle

I'm developing an application in which I build a treeView with some data. As the process is quite long I'd like to be able to save my built treeView (a LinearLayout) in some way to restore it when the ...
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 ...
2
votes
1answer
59 views

Extending an Android Parcelable class

I have a CustomAddress class that extends the android.location.Address class that implements Parcelable. I am trying to make my CustomAddressimplement Parcelableto but am stuck when creating my class ...
0
votes
0answers
52 views

RuntimeException when trying to getParcelableArray in target activity

I'm trying to pass an array of custom objects to an activity. I've implemented parcelable as such: public class WidgetState { static class Light implements Parcelable { int id; ...
0
votes
3answers
178 views

Passing arraylist of objects between activities

I am trying to pass an arraylist of objects between two activities, but my app crushes at the second activity. Can someone help me solve this problem... Here is my code from my first activity: Intent ...
0
votes
2answers
47 views

EnumSet parcelable

I'm writting the writeToParcel method and my model has an EnumSet<object> as attribut. I don't know which out.write....() i have to use for this type ?
0
votes
0answers
133 views

onSaveInstanceState() vs. onRetainCustomNonConfigurationInstance()

I am using ActionBarSherlock, along with several MenuItems that I dynamically manage, depending on program state. Specifically, I save the MenuItems into instance variables in the Activity's ...
0
votes
1answer
42 views

Nested parcelable object not reading

I'm trying to parcel an object which contains some string/int variables and an object variable. The strings and int's are working, but not the nested object. I understand I would have to it also ...
0
votes
1answer
56 views

unmarshalling exception with parcelable

I try to pass a parcelable object with an arraylist of integer but i got an error when android try to read the parcelable object 03-31 19:20:12.484: E/AndroidRuntime(21448): Caused by: ...
2
votes
2answers
126 views

Android - Is posible save entire Bundle into SharedPreferences?

I would like to save a Bundle object (parcelable) into SharedPreferences... is it possible? There is any other option ? Thank you in advance
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 ...
0
votes
0answers
45 views

Android: Parceling List of Objects

I am writing a code for an android app, where if one clicks on an element of a list, it opens a new list of objects unique to it, as shown below. public class A{ public int id; public ...
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 ...
0
votes
0answers
178 views

Android Parcelable - Write and read ArrayList< IA > when IA is a interface

I have a interface IA and class B and C that implement them. Both B and C implement Parcelable as well. Then I have the tricky part! Class D has a ArrayList< IA >. I need this too insert both B ...
1
vote
0answers
73 views

Passing arrayList<object> between activities loses some objects

Im trying to pass an arrayList from activity A to another activity B. The object class I am using implements Parcelable. In A activity the arrayList seems to be well formed, but when I try to get it ...
0
votes
1answer
166 views

Save parcelable class into file

I was using a serializable class for I save the xml parser result, but when I read that It is very slow in Android, I changed to parcelable class. Now, I want to save the content parcelable class ...
1
vote
1answer
143 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
2answers
187 views

Parcelable ArrayList<LatLng> Android

I can't to implement Parcelable on my object attribute "ArrayList" , apparently my attribute "ArrayList works, why ? because, I use the same method : in.readTypedList(etapes,Step.CREATOR); ...
0
votes
2answers
75 views

Send a cursor to an activity from a service

I'm trying to send database cursor from a service(An IntentService) to my Activity(Which implements a Receiver to catch any response from the service). Once i get the data from query cursor = ...
0
votes
3answers
330 views

Pass ArrayList<? implements Parcelable> to Activity

I have searched a few topics but not found a solution to my problem. public class Series implements Parcelable { private String name; private int numOfSeason; private int numOfEpisode; /** ...
0
votes
2answers
113 views

how to parcel hashset with custom objets

im implementing an application in android and i need to make my objets parcelables to move between activities. I use hibernate in the server so my classes have hashsets as atribute and i dont know how ...
0
votes
2answers
175 views

Pass an object containing list of objects to another activity using Parcelable

I have my activity WorkerActivity with a list of some worker and I'm trying to pass the worker object clicked to my WorkerDetailActivity. I'm relative new to java and android, so i was searching for ...
0
votes
1answer
161 views

How to make a list<enum> parcelable? [closed]

I'm trying to make my class parcelable, but it has a list of enums inside. I've already seen how to do this with single enums here... How could I do this? Thanks! ;)
0
votes
2answers
176 views

ClassCastException when unmarshelling parcelable array

I'm basically trying to save an array of Bitmaps between states. My fragment's onSaveInstanceState: public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); ...
0
votes
2answers
128 views

Parcelable implementation with ArrayList<custom-object>

I think it's just a stupid mistake but the ArrayList always ends up null. It's driving me crazy so thought I'd ask for help. Object class: import android.os.Parcel; import android.os.Parcelable; ...
1
vote
1answer
38 views

How to use Parcelable on non-primitive types?

I have a class TableMetaAttrs: public class TableMetaAttrs implements Parcelable { private Integer id; private String name; private String value; private Tables table; ... How do i ...
0
votes
0answers
54 views

Reading a class in Parcelable

I have implemented Parcelable. This is my code: Class A implements Parcelable { public Read read;// how to read and write this? public int a; } I that i dont know how to read public ...
0
votes
1answer
50 views

How to use a class field array in a Android Parcelable

I created my own Parcelable class based on a snippet to send custom data via an Intent. Using it, Android (Min. API 10) gives me an exception, what it wrong with that piece of code below? I broke it ...
1
vote
2answers
147 views

How to permanently store parcelable custom object? [duplicate]

I want to store a custom object (let's call it MyObject) permanently so that if it is deleted from memory, I can reload it in my activity/fragment onResume() method when the app starts again. How can ...
1
vote
0answers
110 views

Storing complex object graphs in Parcelable?

Existing Parcelable examples are rather trivial. If you have a complex object graph the following questions arise quickly questioning the feasibility: Is there any way to prevent an object being ...
1
vote
0answers
68 views

Pass ArrayList with recursive reference through intent

I have parcelable class Category public static class Category implements Parcelable { public String name; public int id; public ArrayList<Category> childrenCategory; public ...

1 2 3 4 5 7