我可以用canvas draw rect来填充矩形:
Rect rt = new Rect(0,getWidth(),getHeight()); myPaint.setColor(myColor); myPaint.setStyle(Style.FILL); canvas.drawRect(rt,myPaint);
但是我需要使用不透明度填充矩形的方法(以百分比表示,0%为TRANSPARENT).
我怎样才能做到这一点?
解决方法
您可以使用Paint类
http://developer.android.com/reference/android/graphics/Paint.html的Alpha属性
myPaint.setAlpha(10);会帮你