只有第一次来自Volley的回应

时间:2015-08-29 12:01:34

标签: android json web-services android-volley

我使用Volley从服务器获取数据。我有2个活动,活动A和B.两者都通过Singleton使用Volley和相同的Request Queue来获取数据。在活动A中一切正常,当我开始活动B时,我得到了Volley的回应。

问题是,如果我从活动B结束并转移到A,然后再次启动B,那么Volley似乎无法得到回应。我做错了什么?

我的单身人士

public class CustomVolleyRequestQueue {

    private static CustomVolleyRequestQueue mInstance;
    private static Context mCtx;
    private RequestQueue mRequestQueue;
    private ImageLoader mImageLoader;

    private CustomVolleyRequestQueue(Context context) {
        mCtx = context;
        mRequestQueue = getRequestQueue();
        mImageLoader = new ImageLoader(mRequestQueue, new LruBitmapCache(
                LruBitmapCache.getCacheSize(mCtx)));
    }

    public static synchronized CustomVolleyRequestQueue getInstance(Context context) {
        if (mInstance == null) {
            mInstance = new CustomVolleyRequestQueue(context);
        }
        return mInstance;
    }

    public RequestQueue getRequestQueue() {
        if (mRequestQueue == null) {
            Cache cache = new DiskBasedCache(mCtx.getCacheDir(), 10 * 1024 * 1024);
            Network network = new BasicNetwork(new HurlStack());
            mRequestQueue = new RequestQueue(cache, network);
            // Don't forget to start the volley request queue
            mRequestQueue.start();
        }
        return mRequestQueue;
    }

    public ImageLoader getmImageLoader(){
        return mImageLoader;
    }

}

我的自定义请求

public class CustomJSONObjectRequest extends JsonObjectRequest{

    private Priority mPriority;

    public CustomJSONObjectRequest(int method, String url, JSONObject jsonRequest,
                                   Response.Listener<JSONObject> listener,
                                   Response.ErrorListener errorListener) {
        super(method, url, jsonRequest, listener, errorListener);
        //this.setShouldCache(true);
    }


    @Override
    public Map<String, String> getHeaders() throws AuthFailureError {
        HashMap<String, String> headers = new HashMap<String, String>();
        headers.put("Content-Type", "application/json; charset=utf-8");
        return headers;
    }

    @Override
    public RetryPolicy getRetryPolicy() {
        // here you can write a custom retry policy
        return super.getRetryPolicy();
    }

    public void setPriority(Priority priority) {
        mPriority = priority;
    }

    @Override
    public Priority getPriority() {
        return mPriority == null ? Priority.NORMAL : mPriority;
    }

}

我执行并在我的活动B的onStart上添加请求,如下所示,

  protected void onStart() {
        super.onStart();
        mQueue = CustomVolleyRequestQueue.getInstance(this.getApplicationContext())
                .getRequestQueue();

        final CustomJSONObjectRequest jsonRequest = new CustomJSONObjectRequest(Request.Method
                .GET, url,
                new JSONObject(), this, this);

        jsonRequest.setTag(REQUEST_TAG);
        jsonRequest.setPriority(Request.Priority.HIGH);
        mQueue.add(jsonRequest);
        setupRecyclerView(rv, rv2, rv3);
    }

我的活动B实现响应侦听器,我在其中简单地解析JSON并在UI上显示数据。

我一直在讨论这个问题,我已经了解了Volley的其他功能的提示和技巧,缓存,忽略请求,深入了解库和使用它与其他图书馆。然而,我仍然没有看到我在这里做错了什么。

1 个答案:

答案 0 :(得分:0)

好吧找到了我的解决方案,而且非常尴尬。我使用static URL来添加GET参数。由于这是我第一次使用Volley,我不知道如何将GET参数添加到请求中,以后应该会再次使用它。我忘了。

所以基本上我在下次移动到下一个活动时连接GET参数值,因此从服务器获得空响应,因为那些值不存在。

这太简单了,我应该更加小心我的调试。