在listView对应的adapter的getView()方法中,给checkbox设置Tag,checkbox.setTag(position),考虑到视图可能重用,设置tag放在return convertView之前就好了。然后在点击checkBox的时候就可以getTag来获取到点击的checkbox id
重写adapter中的getView,在这里给checkBox单独加入监听.