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.
In this case I need add shadows, and imageView elevation not working
implementation "com.github.bumptech.glide:glide:4.10.0"
XML
Shape drawable
Glide Configuration
Glide.with(this) .asBitmap() .load(item.image) .apply(RequestOptions.circleCropTransform()) .into(iv_item_employee)