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
|
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 |
|||||||||
|
|
Sadly, you can't. A That's what's happening in this case. When you called (Specifically I think what's happening is this - but I could be wrong. I believe that this code: http://androidxref.com/4.1.1/xref/frameworks/native/libs/binder/Parcel.cpp#736 is writing the bitmap data to an area of shared memory, and putting a reference to that shared memory area into the parcel. This means that the data doesn't need to be copied so often, which is great when you're passing the Parcel to another process using IPC, but not so good if you're just using it to serialize data.) Using
If you are using it for local IPC, then you shouldn't need to call Sorry there's no immediate solution! If you're using it for IPC, then use AIDL. If you're using it for something else, then don't use |
|||
|
|