I\'m fairly new to programming on the android platform. I\'m having some problems massaging an int array to turn it into a Bitmap.
Each element in the int array is a num
I not sure if you can create the bitmap directly from the int array. You may need to iterate through the pixels of the bitmap and set the pixel value from the array using the bitmap setPixel method.
bitmap.setPixel (int x, int y, int color)