In the graphics section of the android developers guide here:
http://developer.android.com/guide/topics/graphics/index.html
There is a section on creating a bit map. The line of code is this:
- Code: Select all
Bitmap b = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b)
What on earth is Bitmap.Config.ARGB_8888? The Android documentation mentions nothing of this.


