gpt4 book ai didi

android - Volley : Pause/Resume Download

转载 作者:搜寻专家 更新时间:2023-11-01 08:51:33 24 4
gpt4 key购买 nike

我正在使用 Volley 加载图像。但是,我想在 ListView fling 上暂停图像下载。

有没有办法在 Volley 中暂停/恢复 Request Queue

谢谢。

最佳答案

Volley 的 RequestQueue 有方法 start()stop() 所以它应该在 onScrollStateChanged() 方法中以下面的方式调用:

if (scrollState == AbsListView.OnScrollListener.SCROLL_STATE_FLING) {
mRequestQueue.stop();
} else {
mRequestQueue.start();
}

关于android - Volley : Pause/Resume Download,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22844405/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com