高斯模糊

在grade 中添加如下配置

defaultConfig {

……

renderscriptTargetApi19

renderscriptSupportModeEnabledtrue

}

使用封装好的第三方的 控件compile'com.qiushui:blurredview:0.8.1'    girhub https://github.com/wl9739/BlurredView

xml 中 添加 自定义属性的引用xmlns:gaosi="http://schemas.android.com/apk/res-auto"

控件 com.qiushui.blurredview.BlurredView  

设置属性gaosi:disableBlurred="false" 禁止开启模糊   true 是静止  FALSE 是开启

gaosi:src="@mipmap/ic_launcher"    图片源等于src

例子:

android:id="@+id/aa"

android:layout_width="match_parent"

android:layout_height="match_parent"

gaosi:disableBlurred="false"

gaosi:src="@mipmap/ic_launcher"

>

注意:1.图片只能是png 格式的  

2最小sdk 19

你可能感兴趣的:(高斯模糊)