Glide(2)
-
Android Compose GlideImage 이미지 미리 캐싱하기 (preload)
Android 에서 Glide를 사용하다보면 이미지를 미리 캐싱해야되는 경우가 생각보다 많습니다. Compose에서는 Glide로 어떻게 이미지 캐싱하는지 알아보겠습니다. 기존 Glide 이미지 미리 캐싱방법Glide.with(this) .load(imageFileName) .preload(); 기존 Glide에서는 preload() 를 이용해 미리 이미지를 캐싱합니다. GlideImage 캐싱방법GlideImage( imageModel = { "이미지url" }, success = { state,painter -> imageBitmap = painter viewEnable.value = true }) GlideImage..
2024.04.26 -
Android Compose GlideImage
Android Compose 를 사용도중 Glide가 필요해 Compose에서 Glide 사용법에 대해 알아보겠습니다. GlideImage git https://github.com/skydoves/landscapist GitHub - skydoves/landscapist: 🌻 A pluggable, highly optimized Jetpack Compose and Kotlin Multiplatform image loading library 🌻 A pluggable, highly optimized Jetpack Compose and Kotlin Multiplatform image loading library that fetches and displays network images with Glide, C..
2024.04.23