1. 程式人生 > >高斯模糊實現毛玻璃效果

高斯模糊實現毛玻璃效果

首先需要匯入依賴:

compile 'com.github.bumptech.glide:glide:3.7.0'

compile 'jp.wasabeef:glide-transformations:2.0.1'

然後在程式碼中:

Glide.with(this).load(R.drawable.placeholder_avatar)  

.bitmapTransform(new BlurTransformation(this, 25), new CenterCrop(this))  

.into(blurImageView);

來實現模糊效果