Android Glide: How to download and cache bitmaps?

前端 未结 3 1131
死守一世寂寞
死守一世寂寞 2020-12-16 01:45

I am using Glide to download and cache images on Android. Everything works well except the fact that I don\'t want to load the bitmaps directly into the ImageView

3条回答
  •  离开以前
    2020-12-16 02:23

    It is now even simpler on Glide 4.9.0.

    Glide.with(this)
        .downloadOnly()
        .load(url)
    

提交回复
热议问题