The parcel tag has no wiki summary.
4
votes
1answer
464 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 = ...
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 ...
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
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
1answer
170 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
0
votes
1answer
293 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 ...
0
votes
1answer
159 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.
...
3
votes
0answers
372 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[] ...
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 ...
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 ...
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
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
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
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.