Hi sir
I am starting to game development adding bitmap images in to array list how can implemented
for(int i =0;i<9;i++)
{
resizedBitmap[i] = Bitmap.createBitmap(bitmapOrg, (i%3)*newWidth, (i/3)*newHeight,newWidth, newHeight);
}
Given 9 images are storing array list display random order how can implemented its urgent