I have an ArrayList with drawables and now I want to send them with an Intent to my Service class. How can I do it? My ArrayList:
ArrayList<Drawable> drawableList = new ArrayList<Drawable>();
My Intent:
Intent service = new Intent(this, MyOwnService.class);
service.putExtra("Dauer", dauer);
service.putExtra("Links", false);
startService(service);
I have Bitmaps which I convert to drawables:
Drawable d = new BitmapDrawable(getResources(),bmp);
How can I put this ArrayList to this Intent?