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.
private void setContactImage(@NonNull ViewHolder holder, ClsContactDetails clsContactDetails) { Glide.with(context).load(clsContactDetails.getPic()) .apply(new RequestOptions().centerCrop().circleCrop().placeholder(R.mipmap.ic_launcher)).into(holder.ivPersonImage); }