1
Tenma 2020-08-13 11:21:27 +08:00
开启缓存?
|
2
andev OP 找到原因了,在 RecyleView 滑动监听里处理了 Glide:
if (newState == RecyclerView.SCROLL_STATE_IDLE) { Glide.with(getContext()).resumeRequests(); } 导致在滑动停止时,Glide 调用 resumeRequests 重新请求了之前失败的 URL,Glide 有什么方法调用使得在请求失败后, 不将失败的请求保存之后再请求? |