本文介绍了滑行:仅在顶部显示半径角的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Glide.这里是代码段:

I use Glide. Here snippet:

Glide.with(context).load(referenceUrl).into(holder.imageViewPhoto);

好.很好但是我需要只在TOP上显示带有圆角的图像.

OK. It's work fine.But I need image to show with radius corners only on TOP.

类似这样的东西:

Glide是否有可能?

Is it possible by Glide?

推荐答案

您可以使用:

requestOptions.centerInside().transform(new CenterInside(), new GranularRoundedCorners(topLeft, topRight, bottomRight, bottomLeft))

这篇关于滑行:仅在顶部显示半径角的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 12:31