I use Glide. Here snippet:
Glide.with(context).load(referenceUrl).into(holder.imageViewPhoto);
OK. It's work fine. But I need image to show with radius corners only on TOP.
Something like this:
Is it possible by Glide?
I use Glide. Here snippet:
Glide.with(context).load(referenceUrl).into(holder.imageViewPhoto);
OK. It's work fine. But I need image to show with radius corners only on TOP.
Something like this:
Is it possible by Glide?
You can use :
requestOptions.centerInside().transform(new CenterInside(), new GranularRoundedCorners(topLeft, topRight, bottomRight, bottomLeft))