android列表复选框

时间:2012-04-24 15:31:53

标签: android list checkbox android-cursoradapter

这个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);
    }

}

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

这里有很多不妥之处:

  • 不要在getView中更改状态。我指的是翻转行[position]。可以多次调用getView来绘制相同的列表行。作为旁注,您可以使用=!a;
  • 进行翻转
  • 将检查状态设置为if on v!= null。如果您回收视图,您仍然需要初始化它的UI,因为它可能设置为不同数据行的状态。
  • 如果视图不为null,并且您重复使用它,请将其返回
  • 如果视图为null,则需要创建新实例,例如通过膨胀布局