I have an ArrayList that I have populated using the method getBitmapFromAsset() and want to pass it via intent using a Bundle. Howeve
ArrayList
getBitmapFromAsset()
Bitmap implements Parcelable by default.
Use Bundle.putParcelableArrayList(String key, ArrayList extends Parcelable> value):
ArrayList bitmaps = new ArrayList(); bitmaps.add(bitmap); bundle.putParcelableArrayList("names", bitmaps);