Glide.with(context)
.load(api_url + "/" + list.get(position).getAvatar())//加载图片的网址
.apply(RequestOptions.bitmapTransform(new CircleCrop()))//设置成为圆形图片
.placeholder(R.drawable.ic_launcher_background)//设置默认占位图
.error(R.drawable.ic_launcher_foreground)//设置加载失败的图片
load(iconUrl).error( R.drawable.error) //异常时候显示的图片
.fallback( R.drawable.blank) //url为空的时候,显示的图片
.into(holder.share_share_with_others_item_tupian);//所要加载到的位置