Android空间毛玻璃、磨砂、高斯模糊背景,带彩色边框,自定义shape
给view添加磨砂背景drawable,自定义的shape
//项目根目录的build.gradle中
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
//app的build.gradle中
dependencies {
implementation 'com.github.zcxshare:BlurShape:1.1'
}
获取blur_shape module的代码依赖即可,比较简单
val shape = BlurShape(clBg, tvContent).apply {//第一个参数是以该view为基础进行模糊处理,第二个是需要添加该背景view
setStroke(DensityUtil.dp2px(3f).toFloat(),getColor(R.color.bg_treat_colours2))//添加边框线
setRadius(DensityUtil.dp2px(10f).toFloat())//添加倒角
}
tvContent.background = ShapeDrawable(shape)
- Fork 本仓库
- 新建 Feat_xxx 分支
- 提交代码
- 新建 Pull Request