'how to load image progressively in android

Hy I wanna achieve this result in android how can I do that, I know there are lots of references that show Fresco can do this but it's not working as I want to, I even try glide with this way but it's not working

val thumbnailRequest: RequestBuilder<Drawable> = Glide
                .with(pImageView.context)
                .load(pProduct.thumbnailImage)
        Glide
                .with(pImageView.context)
                .load(pProduct.imageUrl)
                .thumbnail(thumbnailRequest)
                .into(pImageView);

how can I do this .. thanks in advance?



Sources

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

Source: Stack Overflow

Solution Source