我有一个带子复选框的可扩展列表视图。复选框在child_helper xml中定义,ID为“check1”。出于某种原因,似乎多个复选框链接在一起而不是每个复选框都是独立的。例如,如果在第一组下我选择了第一个项目,它会选择该组中的每个第3个项目,并选择所有其他组,它选择第二个项目,跳过两个项目并选择下一个项目。
如果我选择组1中的前三项,则会选择所有组中的所有项目。不知何故,我为每个孩子创建了3组复选框,而不是单独的复选框。我一直在看很多教程,表明问题是通过自定义适配器修复的。我正在使用自定义适配器,但是,我不确定如何使用它的所有功能。
也许更好,更短的问题是我应该如何区分每个儿童复选框?
谢谢
这是我的听众的代码:
expListView.setOnChildClickListener(new OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
Log.d( "Enter_Foods", "onChildClick: "+childPosition );
CheckBox cb = (CheckBox)v.findViewById( R.id.check1 );
if( cb != null )
cb.toggle();
return false;
}
});
}
我认为问题在于我的适配器中的一个重写方法。
ExpandableListAdapter foodCategoryExpand = new ExpandableListAdapter() {
@Override
Allitemsenabled()
other override methods...
public Object getChild(int groupPosition, int childPosition) {
switch (groupPosition) {
case 0:
return group1.get(childPosition);
case 1:
return group2.get(childPosition);
case 2:
return group3.get(childPosition);
default:
return null;
}
}
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
ChildHolder holder;
if (convertView == null) {
holder = new ChildHolder();
LayoutInflater inflator = LayoutInflater.from(Enter_Foods.this);
convertView = inflator.inflate(R.layout.enter_foods_child_helper,null);
holder.tvChild = (TextView) convertView.findViewById(R.id.enter_foods_exp_lay_child);
convertView.setTag(holder);
} else {
holder = (ChildHolder) convertView.getTag();
}
//switch based on which group (main heading) child is in
switch (groupPosition) {
case 0:
holder.tvChild.setText(group1.get(childPosition));
break;
case 1:
holder.tvChild.setText(group2.get(childPosition));
break;
case 2:
holder.tvChild.setText(group3.get(childPosition));
break;
}
return convertView;
}
//create Group (main heading) view
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
GroupHolder holder;
if (convertView == null) {
holder = new GroupHolder();
LayoutInflater inflator = LayoutInflater.from(Enter_Foods.this);
//inflate xml file and then get view from that file
convertView = inflator.inflate(R.layout.enter_foods_group_helper,null);
holder.tvGroup = (TextView) convertView.findViewById(R.id.enter_foods_exp_lay_group);
convertView.setTag(holder);
} else {
holder = (GroupHolder) convertView.getTag();
}
//this actually gets the text we set in onCreate and sets it to the textView (holder)
holder.tvGroup.setText(groupTitle.get(groupPosition));
return convertView;
}
other override methods
答案 0 :(得分:0)
解决此复选框问题。
首先创建一个
ArrayList<String> isCheckedStatus = new ArrayList<String>();
CheckBox check_document;
在填充列表视图时,请使用默认的“false”
填充此arraylistfor (int i = 0; i < YOUR LIST ITEM ARRAY.size(); i++) {
isCheckedStatus.add("false");
}
现在,在复选框中点击你的getChildView方法
@Override
public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {if (isCheckedStatus.size() > 0) {
check_document = (CheckBox) convertView.findViewById(R.id.summary_chk);
if (isCheckedStatus.get(childPosition).equalsIgnoreCase("false")) {
((CheckBox) convertView.findViewById(R.id.summary_chk)).setChecked(false);
} else if (isCheckedStatus.get(childPosition).equalsIgnoreCase("true")) {
((CheckBox) convertView.findViewById(R.id.summary_chk)).setChecked(true);
}
check_document.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
System.out.println("AAAA size" + isCheckedStatus.size());
if (((CheckBox) v).isChecked()) {
if (isCheckedStatus.size() > 0) {
isCheckedStatus.remove(childPosition);
isCheckedStatus.add(childPosition, "true");
}
} else {
if (isCheckedStatus.size() > 0) {
isCheckedStatus.remove(childPosition);
isCheckedStatus.add(childPosition, "false");
}
}
}
});
}
这将在每次调用getchildview方法时更改复选框状态。 并解决您的多个复选框选择问题。
希望这项工作。它对我有用......