Possible Duplicate:
How to pass a ArrayList<Bitmap> between activities
I want to pass all the Bitmap array elements to another activity, I can pass array list but I can’t pass Bitmap Array, is there are any especial instruction for Bitmap Array in Intent?
Try below Solution to solve this issue.
1) First Convert Image into Byte Array and then add into arraylist then pass this arraylist into Intent and in next activity get arraylist from bundle and Convert into Image(Bitmap) and set into ImageView.
Convert Bitmap to Byte Array:-
Then add this byte array into arraylist.
Convert byte array into Bitmap Image:-