美文网首页
高斯模糊

高斯模糊

作者: 52ce0959a4a7 | 来源:发表于2016-12-22 16:19 被阅读0次

    在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

    相关文章

      网友评论

          本文标题:高斯模糊

          本文链接:https://www.haomeiwen.com/subject/djchvttx.html