是否可以緩存圖像使用滑動而不顯示它在imageView
?如果是那麼如何?緩存圖像沒有顯示滑動
現在我做這個代碼:
Glide
.with(getApplicationContext())
.load("imageUrl")
.override(windowWidth(),(int)windowWidth()*0.5))
.diskCacheStrategy(DiskCacheStrategy.ALL);
但是這是行不通的,當應用程序是下滑負荷的形象不是從高速緩存,但是從打開URL。
你怎麼知道它沒有從高速緩存中取出 ? – MRX
使用'Picasso' [試試這個](https://stackoverflow.com/a/30686992/6544105) – dustblue