作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
非常简单:
有没有办法判断 Volley 请求当前是否处于待处理/正在进行中?
当然我可以通过不同的回调手动跟踪它的状态,但是有更好的方法吗?
最佳答案
我现在能想到的唯一方法是继承 RequestQueue,并公开最简单的方法:
public boolean contains(Request<?> request) {
return mCurrentRequests.contains(request);
}
但是我将很难创建和配置我的队列,因为我无法调用 Volley.newRequestQueue(Context)
如果没有更好的答案,我会选择这个...:(
关于java - Volley : Is there a way to check if a request is pending or in progress?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26624428/
我是一名优秀的程序员,十分优秀!