我的问题是我有一个列表视图,当选中清除按钮时,复选框可见性消失了复选框变得可见我正在选中复选框的状态但问题是当选中复选框时它调用onCheckChange()并完成工作以设置状态但是当我的视图再次重新设置setChecked到商店状态并再次调用我的onCheckChanged并且我不知道为什么当我向上滚动它不会恢复我的检查状态... 这是我的代码
public View getView(int position,View convertView,ViewGroup parent)
{
final int currentPosition=position;
View row=convertView;
if(row==null)
{
LayoutInflater inflater=((Activity)context).getLayoutInflater();
row=inflater.inflate(layoutResourceId, parent,false);
holder=new Feedbacks();
holder.lvGuestName=(TextView)row.findViewById(R.id.guestName);
holder.checkBox=(CheckBox)row.findViewById(R.id.clearCheck);
row.setTag(holder);
}
else
{
holder=(Feedbacks)row.getTag();
}
if(showCheckbox)
{
holder.checkBox.setVisibility(View.VISIBLE);
}
else
{
holder.checkBox.setVisibility(View.GONE);
}
holder.lvGuestName.setText(feedbackList.get(position).getGuestName());
holder.checkBox.setChecked(checks.get(position));
holder.checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if(isChecked)
{
checks.put(currentPosition, true);
}
else
{
checks.put(currentPosition, false);
}
}
});
return row;
}
答案 0 :(得分:0)
尝试使用它。
holder.checkBox.setTag(position);
holder.checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
Integer currentPosition = Integer.parseInt(buttonView.getTag().toString());
if(isChecked)
{
checks.put(currentPosition, true);
}
else
{
checks.put(currentPosition, false);
}
}
});
此外,无需使用新的视图“行”。重新使用convertView而不是row并返回它。你在这里使用View来浪费记忆力。所以只需重用convertView。