GridView适配器在SwipeRefreshLayout的Refesh上填充不正确

时间:2014-05-07 16:18:38

标签: android gridview baseadapter asynchttpclient

我的GridView适配器出现问题 - 第一次加载正常,但每次重新加载都会将第一张图片添加到空网格视图中,即使结果中只有一张照片也是如此。

图片有助于说明。

enter image description here

enter image description here

enter image description here

所以我怀疑我的GridAdapter没有正确处理数据,但不确定我错过了什么。

这是我的onSuccess,它在AsyncHttpClient从API中获取数据后调用适配器:

@Override
            public void onSuccess(JSONObject jsonObject) {
                swipeLayout.setRefreshing(false);
                Toast.makeText(getApplicationContext(), "Success!", Toast.LENGTH_LONG).show();
                JSONArray list = jsonObject.optJSONArray("photos");
                for (int i = 0; i < list.length(); i++){
                    try {
                        photoUrlList.add(list.getJSONObject(i).getString("thumb_url"));
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                }
                mFourGridAdapter.updateData(photoUrlList);
            }

我的MyFourGridAdapter:

 private class MyFourGridAdapter extends BaseAdapter
    {
        private LayoutInflater inflater;
        private List<String> photoUrlList;

        public MyFourGridAdapter(Context context, List<String> photoUrlList ) {
            inflater = LayoutInflater.from(context);
            this.photoUrlList = photoUrlList;
        }

        public void updateData(List<String> values) {
            // update the adapter's dataset
            photoUrlList = values;
            notifyDataSetChanged();
        }

        @Override
        public int getCount() {
            return photoUrlList.size();
        }

        @Override
        public Object getItem(int i)
        {
            return photoUrlList.get(i);
        }

        @Override
        public long getItemId(int i)
        {
            return i;
        }

        @Override
        public View getView(int i, View view, ViewGroup viewGroup) {
            View v = view;
            ImageView picture;

            if(v == null) {
                v = inflater.inflate(R.layout.gridview_item, viewGroup, false);
                v.setTag(R.id.frame_square_image_view, v.findViewById(R.id.frame_square_image_view));
            }

            picture = (ImageView)v.getTag(R.id.frame_square_image_view);
            String photoUrl = photoUrlList.get(i);
            Picasso.with(picture.getContext()).load(photoUrl).into(picture);

            return v;
        }
    }

如果有任何不清楚的地方请评论 - 它有点难以解释。感谢任何帮助。谢谢。

1 个答案:

答案 0 :(得分:0)

您在photoUrlList.add()方法中呼叫onSuccess()。加上您的症状,表明您没有在每次刷新操作时都使用新列表,因此每次刷新时都会在ArrayList上附加相同的URL。