图片采用的是Android使用setShadowLayer

图片采用的是Android使用setShadowLayer

本文介绍了图片采用的是Android使用setShadowLayer()复制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的方法的类 setShadowLayer 油漆在Android应用阴影位图图像上生效。然而,代替创建阴影效果,该图像是重复的。

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?

谢谢!

推荐答案

只是增加它的半径,它会给阴影效果:

Just increase radius of it and it will give shadow effect:

mPaint.setShadowLayer(5, getWidth(), getHeight()-2, Color.BLUE);

在这里5是我的半径。

here 5 is my radius.

这篇关于图片采用的是Android使用setShadowLayer()复制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-02 02:16