Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Volley加载图像。但是,我想在 listview 上暂停图像下载fling。
Volley
fling
有没有办法Request Queue在 Volley 中暂停/恢复。
Request Queue
谢谢。
Volley 的 RequestQueue 有方法start(),stop()所以它应该在onScrollStateChanged()下面的方法中被调用:
start()
stop()
onScrollStateChanged()
if (scrollState == AbsListView.OnScrollListener.SCROLL_STATE_FLING) { mRequestQueue.stop(); } else { mRequestQueue.start(); }