Need an example of HttpResponseCache in Android

后端 未结 3 1609
天涯浪人
天涯浪人 2020-12-14 22:48

Hi I am trying to use the HttpResponseCache introduced in Android 4.The docs do talk clearly about how to install the cache but I am at a complete loss on how to cache Image

3条回答
  •  有刺的猬
    2020-12-14 23:31

    When you enable HttpResponseCache, all HttpUrlConnection queries will be cached. You can't use it to cache arbitrary data, so I'd recommend keep using DiskLruCache for that.

提交回复
热议问题