Tagged Questions
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
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 ...