How to show image from this Url : https://via.placeholder.com/600/1e5390
inside Glide ? When I'm trying to load it into Glide from server it just show the error placeHolder with no reason !
What can I do?
How to show image from this Url : https://via.placeholder.com/600/1e5390
inside Glide ? When I'm trying to load it into Glide from server it just show the error placeHolder with no reason !
What can I do?
Try with Picasso
Picasso.with(context).load("https://via.placeholder.com/600/1e5390").fit().centerCrop()
.placeholder(your placeholder)
.error(your error image)
.into(yourimageview);