本文介绍了如何用滑翔库做得圆润的形象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以,有人知道如何显示与圆角与滑翔的形象呢?我加载与滑翔的图像,但我不知道该怎么圆润PARAMS传递给该库。
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.
我需要显示的图像就像下面的例子:
I need display image like following example:
推荐答案
您可以使用 RoundedBitmapDrawable
与滑翔圆形的图像。没有自定义ImageView的是必需的。
You can use RoundedBitmapDrawable
for circular Images with Glide. No Custom ImageView is required.
Glide.with(context).load(url).asBitmap().centerCrop().into(new BitmapImageViewTarget(imageView) {
@Override
protected void setResource(Bitmap resource) {
RoundedBitmapDrawable circularBitmapDrawable =
RoundedBitmapDrawableFactory.create(context.getResources(), resource);
circularBitmapDrawable.setCircular(true);
imageView.setImageDrawable(circularBitmapDrawable);
}
});
这篇关于如何用滑翔库做得圆润的形象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!