在 Android 中使用 setShadowLayer() 复制图像
我在 Android 上使用“Paint
”类的“setShadowLayer
”方法在位图图像上应用阴影效果。但是,不会创建阴影效果,而是复制图像。
有谁知道为什么会发生这种情况?
谢谢!
I'm using the method "setShadowLayer
" of the class "Paint
" on Android to apply a shadow effect on a Bitmap image. However, instead of creating the shadow effect, the image is duplicated.
Does anyone know why this happens?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需增加它的半径,它就会产生阴影效果:
这里 5 是我的半径。
Just increase radius of it and it will give shadow effect:
here 5 is my radius.