So, anybody know how to display an image with rounded corners with Glide? I am loading an image with Glide, but I don\'t know how to pass rounded params to this library.
Now in Glide V4 you can directly use CircleCrop()
Glide.with(fragment) .load(url) .circleCrop() .into(imageView);
Built in types