那么,有人知道如何使用 Glide 显示带有圆角的图像吗?我正在使用 Glide 加载图像,但我不知道如何将舍入参数传递给该库。
我需要显示图像,如下例:
滑翔 V4:
Glide.with(context) .load(url) .circleCrop() .into(imageView);
滑翔 V3:
您可以使用RoundedBitmapDrawableGlide 制作圆形图像。不需要自定义 ImageView。
RoundedBitmapDrawable
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); } });