I would like to make Canvas area transparent because I would like to add an Image behind it so that Canvas actions happen above the image.My code for the canvas is here
canvas.drawColor(Color.argb(0, 255, 255, 255));
first attribute is alpha and rest are RGB colors.
or
canvas.drawColor(Color.TRANSPARENT);