I can fill rectangle with canvas draw rect:
Rect rt = new Rect(0, 0, getWidth(), getHeight()); myPaint.setColor(myColor); myPaint.setStyle(Style.FILL); canvas.dr
You can use the Alpha property of Paint class.
Alpha
myPaint.setAlpha(10); will help you.
myPaint.setAlpha(10);