BlurImageView For Android, you can load your image progressively like Medium.
###How it works?
- First it will show user a blurry image;
- At the same time, it starts to load the real image;
- once loaded, replace the blurry one automatically.
###Why I do this? This lib is inspired by Medium and users love this way of loading pics, Because a beautiful Blurry pic is always better than a blank area or an ugly thumbnail.
###How to get it? Three Ways to choose. ####1. For Gradle Simply add the dependency
dependencies {
compile 'com.wingjay:blurimageviewlib:1.0.+'
}
####2. For Gradle and JitPack Maven
Step 1. Add it in your build.gradle
repositories {
jcenter()
// ...
maven { url "https://jitpack.io" }
}
Step 2. Add the dependency in the form
dependencies {
compile 'com.github.wingjay:blurimageview:v1.0'
}
####3. For Maven
Step 1. Add the JitPack repository to your build file
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
Step 2. Add the dependency in the form
<dependency>
<groupId>com.github.wingjay</groupId>
<artifactId>blurimageview</artifactId>
<version>v1.0</version>
</dependency>
###How to use it?
BlurImageView blurImageView = (BlurImageView) findViewById(R.id.XXX);
blurImageView.setBlurImageByUrl(blurImageUrl);
This will load and blur a image.
BlurImageView fullBlurImageView = (BlurImageView) findViewById(R.id.XXX)
fullBlurImageView.setFullImageByUrl(blurImageUrl, normalImageUrl);
This will load two images progressively.
blurImageView.setBlurFactor(blurFactor);
This can set the factor of blurry, default 8 - 10.
###Related resource
Thanks for the algorithms: Stack Blur
: http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html
###Reach me You can get information about me and reach me in my github page: https://github.com/wingjay
Feel free to give me advices by mailto:yinjiesh@126.com
######Thanks!