I have a central application which is going to receive messages from various services and construct dynamicaly a notification (up to 3 or 4 informations from the services in the notification). Part of the personalized notification will include images sent from the services (image included in the service package in drawable, not on SD or phone memory) and I just wanted to know how to transfer them properly.
I thought of using a Parcelable or some container to put the image in and then transfer it using an intent but I just don't know how to proceed (retrieving the image bytes and parceling them)... The images are "light", about 5Kb.
Any advise ?