如何在android中模糊视图或布局?

时间:2016-11-28 04:37:34

标签: android android-layout material-design android-xml blur

我尝试模糊视图或布局,就像下面的示例一样。到目前为止,我只看到了模糊图像的例子,我对如何在布局上实现模糊感到困惑。我希望你们能帮忙!

enter image description here

干杯!

2 个答案:

答案 0 :(得分:5)

试试这个Library简单易用。

设置

依赖关系

dependencies {
compile 'jp.wasabeef:blurry:2.0.3'
}

功能

重叠

父级必须是ViewGroup

Blurry.with(context).radius(25).sampling(2).onto((ViewGroup) rootView);

Blurry.with(context).capture(view).into(imageView);

模糊选项

  • 半径
  • Down Sampling
  • 滤色镜
  • 异步支持
  • 动画(仅覆盖)
Blurry.with(context)
.radius(10)
.sampling(8)
.color(Color.argb(66, 255, 255, 0))
.async()
.animate(500)
.onto(rootView);

输出:

enter image description here

答案 1 :(得分:-4)

在xml布局中为模糊图像设置alpha