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 ...
1
vote
0answers
213 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
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
3answers
1k views
Android - When bundling List<MyClass> use Parceling or Serializing?
How should List<MyClass> be properly passed from the main activity to a secondary activity?
From what I understand, there are two ways to bundle data: Parceling and Serializing. What are the ...
1
vote
2answers
3k views
android parcelable string array
I have
ArrayList<String> ids = ArrayList<String>();
What would be the cleanest way to make it Parceleable? Apparently String itself is not parcelable, so Parcel.writeList(ids) is not ...