I'm starting the development of the game by adding bitmaps to the list of arrays, how can I implement
for(int i =0;i<9;i++)
{
resizedBitmap[i] = Bitmap.createBitmap(bitmapOrg, (i%3)*newWidth, (i/3)*newHeight,newWidth, newHeight);
}
Given that 9 images store the display of the list of arrays in random order, how can I implement its urgent
source
share