有没有办法清理它(再次使透明和空白)而不创建新的Bitmap实例?
更新:谢谢你的帮助.我找到了答案.
// Fills the bitmap's pixels with the specified Color. bitmap.eraseColor(somecolor);
myBitmap.eraseColor(android.graphics.Color.TRANSPARENT);
TRANSPARENT的常量int值为0x00000000.