You can use Arraylist:
ArrayList<Bitmap> bitmapArray = new ArrayList<Bitmap>(); bitmapArray.add(myBitMap);
or just an array of a bitmap, for example:
Bitmap[] bitmapArray = new Bitmap[];
However, be careful about the size of your image. You will probably have problems if you try to save a lot of large images.
grunk
source share