android – 如何画一个透明的圆圈?

前端之家收集整理的这篇文章主要介绍了android – 如何画一个透明的圆圈?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图画一个透明的圆圈,但它不起作用.

当我绘制一个位图时,它可以工作,但一个圆不会变得透明.

以下是我的代码

Paint paint = new Paint();
paint.setAlpha(125);
canvas.drawBitmap(bitmap,sourceRect,destRect,paint);  // this works fine

canvas.drawCircle(x,y,radius,paint);   // the circle is drawn but not transparent

解决方法

我找到了.

paint.setAlpha必须在paint.setColor之后

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

猜你在找的Android相关文章