Blurry

介绍:

简单易用的模糊效果库。

运行效果:

使用说明:

Gradle
dependencies {
    compile 'jp.wasabeef:blurry:0.0.3'
}

Overlay

Parent必须为ViewGroup

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

Into

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

模糊选项

  • Radius

  • Down Sampling

  • Color Filter

  • Asynchronous Support

Blurry.with(context)
  .radius(10)
  .sampling(8)
  .color(Color.argb(66, 255, 255, 0))
  .async()
  .onto(rootView);
已下载
0