我正在尝试在矩形布局视图上使用COLOR制作阴影模糊效果。我尝试使用此代码,但无济于事。
int glowRadius = 14;
int glowColor = Color.parseColor("#acc5fe");
Paint paint = new Paint();
paint.setColor(glowColor);
paint.setMaskFilter(new BlurMaskFilter(glowRadius, BlurMaskFilter.Blur.OUTER));
RectF rectF = new RectF(mRootView.getHeight(), mRootView.getWidth(),
mRootView.getHeight(), mRootView.getWidth());
Canvas canvas = new Canvas();
canvas.drawRect(rectF, paint);
mRootView.draw(canvas);
它似乎什么也没做。 我也尝试使用shadowDx和shadowDy等。但这没有任何作用。
How to add a blurred drop shadow to a button?是一个非常相似的问题,但我认为9补丁不是一个可行的解决方案,因为它是布局而不是图像。
如何在Android上创建外部阴影模糊效果?
更新
仍然没有找到成功的答案。我想要类似的东西
其中阴影效果在电子邮件编辑文本上,其颜色不同于黑色。
答案 0 :(得分:0)
尝试跟随一个用于支持凸形材料阴影的库
答案 1 :(得分:0)
从您的问题中我了解到的是,首先您要放下阴影。这是您可以用来阴影的方法。
只需将其添加到xml的父级布局中即可。
android:background="@android:drawable/dialog_holo_light_frame"
检查此答案以获取更多信息。
how to add shadow effect in alert dialog box in android
让我知道这是否适合您。
编辑:
请检查此答案。这可能对您有帮助。
Extending Android View class to add a dropshadow
可以使用NinePatchDrawable来实现。以下是一个简单的示例。
protected NinePatchDrawable bg;
protected Paint paint;
protected Rect padding = new Rect();
protected Bitmap bmp;
protected void init() {
// decode the 9patch drawable
bg = (NinePatchDrawable) getResources().getDrawable(R.drawable.balloon);
// get paddings from the 9patch and apply them to the View
bg.getPadding(padding);
setPadding(padding.left, padding.top, padding.right, padding.bottom);
// prepare the Paint to use below
paint = new Paint();
paint.setAntiAlias(true);
paint.setColor(Color.rgb(255,255,255));
paint.setStyle(Style.FILL);
// this check is needed in order to get this code
// working if target SDK>=11
if( Build.VERSION.SDK_INT >= 11 )
setLayerType(View.LAYER_TYPE_SOFTWARE, paint);
// set the shadowLayer
paint.setShadowLayer(
padding.left * .2f, // radius
0f, // blurX
padding.left * .1f, // blurY
Color.argb(128, 0, 0, 0) // shadow color
);
}
也请尝试以下颜色:
Color.argb(128, 0, 0, 0)