<Glide download and cache multiple images of full ...
# stackoverflow
u
Glide download and cache multiple images of full size In my project, the User has the ability to download the full gallery of images. The images supposed to be downloaded in full size which might be up to 4000 pixels. The image supposed to be displayed later in the application. schemeWithPoints.forEach { val futureBitmap = Glide.with(applicationContext) .asBitmap() .load(ContentUtils.getContentUrl(it.schemeUrl)) .submit() try { val bitmap = futureBitmap.get()...