0

我正在使用一个ArrayAdapter来填充一个ListView.

我用于的代码getView如下:

public View getView(int position, View convertView, ViewGroup parent) {
    View rowView = convertView;
    if(rowView ==null){
        LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);         
        rowView = inflater.inflate(R.layout.rowlayout_member, parent, false);
        }
    TextView tvName = (TextView) rowView.findViewById(R.id.label);
    TextView tvSurname = (TextView) rowView.findViewById(R.id.label1);
    ImageView ivPhoto = (ImageView) rowView.findViewById(R.id.icon);        

    setRow(tvName ,tvSurname ,ivPhoto,name[position],surname[position],pics[position],); // name, surname and pics are the array of String passed to the adapter.

    return rowView;
}

private void setRow(TextView tv1, TextView tv2, ImageView iv, String name, String surname, String photo){
    iv.setImageResource(R.drawable.sagoma);
    tv1.setText(String.valueOf(name));
    tv2.setText(String.valueOf(surname)); //la quantità la devo prendere da un array di 
    if(photo!=null)
        imageLoader.displayImage(basePath+photo, iv, options);
      }

这工作正常,但我有以下问题:由于我正在使用convertView,视图被回收,所以当我向上和向下滚动时,可能会发生一些图像被推到我的错误行中ListView,特别是当我快速滚动时。

在不牺牲 View 的回收利用的情况下,如何避免这个问题?

笔记:

imageLoader.displayImage(basePath+immagine, iv, options);

来自通用图像加载器库。此方法调用一个线程来加载图像。如果不再需要图像(导致滚动),则停止线程。

4

1 回答 1

0

滚动时-当图像加载器准备好显示您的图像时,您的图像不再相关-您的问题可能出在 displayImage 代码中-而不是您的 getView 代码

于 2013-09-27T09:13:50.403 回答