我正在使用模态底部工作表,如何更改默认灰色半透明背景模糊,如我们在iOS中看到的
答案 0 :(得分:0)
您可以使用this库。它具有自定义模糊效果的选项,如颜色,半径,采样等。
将其添加到您的应用级别gradle compile 'jp.wasabeef:blurry:2.1.1'
实现也非常简单参考此代码。
Blurry.with(context)
//style the blur with your color and effects with radius and sampling
.radius(10)
.sampling(8)
.color(Color.argb(66, 255, 255, 0))
.animate(500) //optional
//always use ViewGroup instance, avoid casting other view to viewgroup, it wont work
.onto(rootView); //Use your bottom sheet layout's rootview here.