Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to acheive the blur effect with image url #2

Open
KethuY opened this issue Apr 23, 2019 · 2 comments
Open

How to acheive the blur effect with image url #2

KethuY opened this issue Apr 23, 2019 · 2 comments

Comments

@KethuY
Copy link

KethuY commented Apr 23, 2019

Its working fine but I want to load image using url. How to achieve the blurr effect.
Please help me to resolve this

@jgabrielfreitas
Copy link
Owner

Hi @KethuY !
Are you using any image loader library?
I recommend that you use Picasso

BlurImageView is just a ImageView with new properties.

BlurImageView imageview = (BlurImageView ) findViewById(R.id.blur_imageview);

Picasso.get()
       .load(url)
       .placeholder(R.drawable.user_placeholder)
       .error(R.drawable.user_placeholder_error)
       .into(imageView);

@santhoshrao519
Copy link

not working when using picasso
@jgabrielfreitas

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants