0

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?

1 Answers1

-1

Try with Picasso

Picasso.with(context).load("https://via.placeholder.com/600/1e5390").fit().centerCrop()
.placeholder(your placeholder)
.error(your error image)
.into(yourimageview);
AshishVE
  • 208
  • 1
  • 10