方法一:不使用Glide的默认动画:
Glide.with(mContext)
.load(url)
.dontAnimate()
.placeholder(R.drawable.loading_spinner)
.into(circleImageview);
方案二:使用布局中使用IamgeView:
Glide.with(mContext) .load(datas.getImg()) .centerCrop() .error(R.drawable.normal_photo) .placeholder(R.drawable.normal_photo) .transform(new GlideCircleTransform(mContext)) .into( IamgeView);