滚动listview会创建重复的元数据项

时间:2012-06-27 21:46:43

标签: java android arrays

我使用从JSON数组获取的数据填充列表视图。当我滚动列表视图时,我得到的元数据正在重复。

        public View getView(int pos, View convertView, ViewGroup parent) {
        View tv;
        TextView t;


        if (convertView == null)
            tv = m_inflater.inflate (R.layout.item, parent, false);
          else
            tv = convertView;

        try {
            t = (TextView) tv.findViewById(R.id.text);
            JSONObject obj = _results.getJSONObject(pos);

            t.setText (obj.getString("title").replaceAll("\\<.*?\\>", ""));

            t = (TextView) tv.findViewById(R.id.created_at);

            JSONObject meta = obj.getJSONObject("meta");

            t.setText (t.getText() + "\n"+ "When:" + "\t"+meta.getString("startDate")+"\n"+"Location:" +"\t" +meta.getString("location")+"\n" +"More Info:"+"\t" +meta.getString("eventURL")+"\n");




        } catch (JSONException e) {

            Log.e("alatta", e.getMessage());
        }
        return tv;
      }

1 个答案:

答案 0 :(得分:2)

而不是

t.setText (t.getText() + "\n"+ "When:" + "\t"+meta.getString( ...

试试这个:

t.setText("When:" + "\t"+meta.getString( ...)

这是因为列表视图重用了列表项对象(View convertView),因此在滚动时,您将获得一个已经使用过的tv,并且其视图已经填充了一些值。