'Set the placeholder from blur_hash provided by unsplash API using picasso library

I am no good at android. I recently started a project in android to keep the app lightweight. I had to use unsplash API for background images, through Picasso library. Unsplash JSon looks like this: image

It has a JSonObject called blur_hash which can be used as a placeholder for the image in the form of a String, like LJO;Pd;KXn%M_N.7RjV@D%IVaea}

Picasso.get().load(imageUrl).placeholder(R.drawable.placeholder).
         error(R.drawable.background).into(imageView);

But I don't find a way to use it as a placeholder. Can i get some help?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source