Glide.with(this).asBitmap()
.diskCacheStrategy(DiskCacheStrategy.ALL)//.circleCrop()
.load(item["thumbnailRef"])
.listener(object : RequestListener<Bitmap> {
/** 아래의 오버라이드를 통해서 그림이 나오기전에 그림의 갯수를 나타내는 텍스트가 안나오게한다**/
override fun onLoadFailed(e: GlideException?, model: Any?, target: Target<Bitmap>?, isFirstResource: Boolean): Boolean {
return false
}
@SuppressLint("SetTextI18n")
override fun onResourceReady(resource: Bitmap?, model: Any?, target: Target<Bitmap>?, dataSource: DataSource?, isFirstResource: Boolean): Boolean {
return false
}
}
)
.into(m20_block_a_picture)
'Android Dev' 카테고리의 다른 글
(개인) 이미지 프로필 관리 모듈 작동 (0) | 2021.01.15 |
---|---|
동영상에서 Preview를 얻는 방법 (0) | 2020.11.22 |
dialogFragment dismiss()호출시 발생하는 문제 해결 (0) | 2020.11.15 |
File Extension, 파일 확장자 얻는 예제 (0) | 2020.11.15 |
Photoview. java.lang.IllegalArgumentException: pointerIndex out of range 해결 (0) | 2020.11.05 |