0

这个 Android 视图回收的东西非常疯狂,我花了一整天的时间试图找到一种解决方法。

这是我的代码,它不起作用

public class CustomCursorAdapter extends SimpleCursorAdapter {

    private Context currentContext;
    private Cursor mCursor;
    private boolean[] rows;

    public CustomCursorAdapter(Context context, int layout, Cursor c,
            String[] from, int[] to) {
        super(context, layout, c, from, to);
        // TODO Auto-generated constructor stub
        currentContext = context;
        mCursor = c;
        populateRows();
    }

    private void populateRows() {
        rows = new boolean[mCursor.getCount()];
        int i = 0;
        while (mCursor.moveToNext()) {
            rows[i] = false;
            i++;            
        }

    }

    @Override
    public View getView(int position, View v, ViewGroup parent) {
        // convertView.setBackgroundColor(R.drawable.darkred);
        if (v != null) {
            //getting checkbox
            CheckBox cb = (CheckBox) v.findViewById(R.id.name);

            if(rows[position]){
                rows[position] = false;
            }else{
                rows[position] = true;
            }
            cb.setChecked(rows[position]);

        }

        return super.getView(position, v, parent);
    }

}

任何帮助表示赞赏。

4

1 回答 1

0

这里有很多错误:

  • 不要更改 getView 中的状态。我指的是翻转行[位置]。可能会多次调用 getView 来绘制相同的列表行。作为旁注,您可以使用 a = !a; 翻转
  • 将检查状态设置为 if on v != null。如果你回收一个视图,你仍然需要初始化它的 UI,因为它可能被设置为不同数据行的状态。
  • 如果视图不为空,并且您重用它,则返回它
  • 如果视图为空,则需要创建新实例,例如通过膨胀布局
于 2012-04-24T16:45:38.070 回答