加.dontAnimate()
Glide.with(DetailActivity.this)
.load(bean.getFront_list().get(0).getF_author().getF_author_head())
.crossFade()
.dontAnimate()//解决第一次加载不显示bug
.placeholder(R.mipmap.background_rectangle_error)//图片加载出来前,显示的图片
.error(R.mipmap.background_rectangle_error)//图片加载失败后,显示的图片
.into(showType2Photo);