Abnormal image display
- Dominant language
- Java
- Stars
- 35k
- Forks
- 6.2k
- Avg merge
- 1d 11h
- Merged PRs (30d)
- 8
Description
HI, i find i use glide 4.15.1 lib, use .transition(DrawableTransitionOptions.withCrossFade(1000)) with my app is error display,
the code is:
GlideApp.with(mContext).load(resourceId)
.placeholder(R.drawable.img_backgroud_all)
.error(R.drawable.img_backgroud_all)
.transition(DrawableTransitionOptions.withCrossFade(1000))
.skipMemoryCache(true)
.diskCacheStrategy(DiskCacheStrategy.NONE)
.into(mImageView);
if not use,the code is:
GlideApp.with(mContext).load(resourceId)
.placeholder(R.drawable.img_backgroud_all)
.error(R.drawable.img_backgroud_all)
//.transition(DrawableTransitionOptions.withCrossFade(1000))
.skipMemoryCache(true)
.diskCacheStrategy(DiskCacheStrategy.NONE)
.into(mImageView);
if use,the display is error:the picture show:{

}
if not use, the display is correct:the picture show:{
}
Contributor guide
Assessment
This issue has not been assessed yet.