首页 > 学院 > 开发设计 > 正文

Glide图片加载库的使用

2019-11-07 23:55:16
字体:
来源:转载
供稿:网友

Glide导入库,官网有最新的.

https://github.com/bumptech/glide

Glide.with(mContext).load(pictures.get(position).getImageId()).asBitmap().centerCrop().into(new BitmapImageViewTarget(imageView) { @Override PRotected void setResource(Bitmap resource) { RoundedBitmapDrawable circularBitmapDrawable = RoundedBitmapDrawableFactory.create(mContext.getResources(), resource); circularBitmapDrawable.setCircular(true); imageView.setImageDrawable(circularBitmapDrawable); } });
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表