Volley延迟回应

时间:2015-11-15 12:28:21

标签: android delay httpresponse android-volley jsonobject

我有一个数据库(XAMPP) 我能够得到这些值,但我认为获得值延迟
获取值是在onClickListener的{​​{1}}上触发的。

RecyclerView

我的数据库只包含2行 当我点击(一次)时,我的数组的大小为 然后当我再次点击时,尺寸为两个 这是示例日志。

 class MyViewHolder extends RecyclerView.ViewHolder {
        TextView title;
        ImageView icon;

        public MyViewHolder(View itemView) {
            super(itemView);
            title = (TextView) itemView.findViewById(R.id.listText);
            icon = (ImageView) itemView.findViewById(R.id.listIcon);
            itemView.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    getDBCommet();
                    //context.startActivity(new Intent(context, CategorySelected.class));
                    // Global.selectedPOI = title.getText().toString();
                }
            });
        }
    }


    public void getDBCommet() {
        requestQueue = Volley.newRequestQueue(context);
        RequestHolderPOI jsonObjectRequest = new RequestHolderPOI(Request.Method.POST,
                showUrl, null, new Response.Listener<JSONObject>() {
            @Override
            public void onResponse(JSONObject response) {
                try {
                    JSONArray jsonArray = response.getJSONArray("poi");
                    for (int i = 0; i < jsonArray.length(); i++) {
                        JSONObject jsonObject = jsonArray.getJSONObject(i);
                        Global.getCommentTitle.add(jsonObject.getString("title"));
                        Global.getCommentPicture.add("drawable://" + R.drawable.juandirection_placeholder);
                        Global.getComment.add(jsonObject.getString("comment"));
                        Global.getCommentDate.add(jsonObject.getString("date"));
                        Global.getCommentRating.add(Integer.parseInt(jsonObject.getString("rating")));
                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {

            }

        });
        requestQueue.add(jsonObjectRequest);
        Log.e("SIZE", "" + Global.getComment.size());
    }

首次点击时的尺寸应为两个

1 个答案:

答案 0 :(得分:1)

由于Volley是异步的,因此针对您的问题的简单解决方案是您应该将Log.e("SIZE", "" + Global.getComment.size());移至onResponse。希望这有帮助!