如何在android中填充不透明度的矩形

前端之家收集整理的这篇文章主要介绍了如何在android中填充不透明度的矩形前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以用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);会帮你

原文链接:https://www.f2er.com/android/311581.html

猜你在找的Android相关文章