Tagged Questions
0
votes
1answer
21 views
How would I correctly implement parcel/parcelable in a Hash of objects in Java/Android
I have the following classes: Experiment and Measurements. I pass a HashMap containing Experiment objects as a value, and their Experiment.getExperimentName as a key, between Android activities.
...
1
vote
3answers
63 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
1answer
29 views
Writing/Reading arrays or Stringarrays in Parcelable
In order to pass an object between 2 activities in my app, i made the class implement Parcable and everything works fine. Now I want to extend this class with an Array of String Arrays (String[][]).
...
1
vote
2answers
189 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
79 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
290 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 ...
-4
votes
2answers
130 views
unable to retrieve Parcel implemented class from one activity to another activity
I have a class called Weekly Result which implements Parcel Interface. I am having a problem retrieving the parcel object when I pass it to another activity.
Below is my weeklyResult Class
public ...
1
vote
0answers
50 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 ...
3
votes
2answers
561 views
Passing custom parcelable object extra or in ArrayList to RemoteViewsService breaks appwidget
Basically what i want to do, is to pass a custom parcelable object via an intent, to the RemoteViewsService and thus to my RemoteViewsFactory. For some reason, this simply doesnt work :S Whenever i ...
1
vote
1answer
104 views
Save state on fragments produces StackOverflow error due to parcelable object
I am using 2 different fragments under one activity. One of the fragments contains a list and the other one the detailed view of each element on the list. When the activity creates the fragments, 2 ...
2
votes
1answer
140 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.
0
votes
1answer
587 views
Shared memory region in NDK
I want to have a shared memory block (an ashmem region) that's mapped and accessed from native code. I also want this block to be used by several applications. I also want it to work on SDK level 7 ...
3
votes
0answers
367 views
Android custom KeyEvent not passing to TextView
I have edited the SoftKeyboard IME Android sample code to pass a custom KeyEvent to my application.
I do this using this KeyEvent Constructor:
private void handleCharacter(int primaryCode, int[] ...
0
votes
1answer
167 views
Find binder object in parcel
How can i find binder object in a android parcel? i want to marshall a parcel which has got a bitmap but i got Runtime exception says that the parcel has got binder object.
Best,
Pa
1
vote
2answers
162 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
291 views
Getting getParcelableArrayListExtra returns in NullPointerException?
The Parcelable class is :
package mobile.bh.classes;
import java.util.List;
import mobile.bh.activities.MethodStep;
import android.content.Context;
import android.graphics.Bitmap;
import ...
1
vote
1answer
960 views
Read and write ArrayList<Object> with various type of objects in parcel
I am using parcel to cache Items in binary file. Everything was fine until I need to store into single ArrayList various type of objects:
fout = new FileOutputStream(file);
Parcel ...
0
votes
1answer
116 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 ...
0
votes
1answer
157 views
android sms sendtextmessage throws readexception
I am using the following code to send sms from my application. It works ok on my Galaxy pop device.
But getting Readexception in Premium Galaxy devices. Please let me know what could be
the problem.
...
2
votes
1answer
154 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
131 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
363 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
187 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
419 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
601 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 ...
1
vote
2answers
373 views
How to add a Drawable object to a Parcel object in android?
I'm facing problem in adding a drawable object to a Parcel object, in order to send an object from one activity to another activity.
There are methods like writeString(String) to add strings to a ...
2
votes
1answer
202 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
770 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
318 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
670 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 ...
2
votes
2answers
1k views
How do I know how big to make my array for Parcel.readStringArray()?
I'm getting a null pointer exception when I do this:
private String[] foo;
private void readFromParcel(Parcel in) {
in.readStringArray(foo);
}
It seems I need to allocate the ...
1
vote
0answers
212 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 ...
4
votes
1answer
463 views
Marshalling a Notification Parcel
I'm trying to write a Notification object to a File.
The best way I could find was to write the object to a parcel, marshall that parcel to get a byte[] and then write it to a file.
Parcel notif = ...
2
votes
2answers
911 views
android nested object parceling
how can we parcel nested object in an intent?. For example
lets say there is an object A which contain one string variable and one another object B. now B contain object C . C contain a list of ...
1
vote
0answers
213 views
there are two way to test View.onRestoreInstanceState(Parcelable state), one works the other crashes
onRestoreInstanceState can be tested by changing screen orientation, and by changing the emulator settings devtools/Development Settings/ max app process - with max set to one.
onRestoreInstanceState ...
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
583 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
0answers
1k views
Android “Bad magic number” error from readBundle
I've been using bundles to pass my information around my application and occasionally save them to a file by first passing them to a parcel.
For some reason occasionally when I try to put them back ...
0
votes
1answer
230 views
NPE in an app with remote Service on some devices (market-specific?)
I have two apps: the first one is a remote service. It's manifest is:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mecom.framework"
...

