如何画一个透明的圆?

发布于 2024-12-08 03:33:32 字数 314 浏览 0 评论 0原文

我想画一个透明的圆圈,但它不起作用。

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

简而言之,这是我的代码:

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

I'm trying to draw a transparent circle, but it just doesn't work.

when I'm drawing a bitmap it works, but a circle doesn't become transparent.

Here's my code in short:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲娇萝莉攻 2024-12-15 03:33:32

我找到了。

paint.setAlpha 必须位于 paint.setColor 之后

I found it.

paint.setAlpha must come after paint.setColor

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文