How to blur background images in Android

前端 未结 10 2117
借酒劲吻你
借酒劲吻你 2020-11-30 22:12

What is the best way to blur background images like the image below? I saw some code and libraries but their are a couple of years old or like BlurBehind library, but it doe

10条回答
  •  粉色の甜心
    2020-11-30 23:00

    You can quickly get to blur effect by doing the following.

    // Add this to build.gradle app //

    Compile ' com.github.jgabrielfreitas:BlurImageView:1.0.1 '
    

    // Add to XML

    
    

    //Add this to java

    Import com.jgabrielfreitas.core.BlueImageView;
    

    // Under public class *activity name * //

    BlurImageView myBlurImage;
    

    // Under Oncreate//

    myBlurImage = (ImageView) findViewById(R.id.iv_blur_image)
    MyBlurImage.setBlue(5)
    

    I hope that helps someone

提交回复
热议问题