如何获取listview里选中的checkbox
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取listview里选中的checkbox相关的知识,希望对你有一定的参考价值。
求高手解决个问题:小弟在此先谢过了。当我在listview里放了复选框时,当我选中第一个时,下拉后发现下面有多个和之前选中的那个复选框相同位置的复选框被选中,我一直很郁闷,为什么明明选中了一个,打印出来却是多个选中。似乎是有多少页数据就选中的多少个,每页都有一个被选中。跪求解决?大神们
这个是listView的加载机制造成的,listView会重复利用之前已经绘制的图形。而不是每个都重新绘制,借此提高listView的效率。你只要在getView的时候做出判断,根据是否选中调用checkbox.setChecked方法即可。 参考技术A adapter的getView() 是不可控的,一般的作法是定义一个list<> 去存储item的状态 参考技术B 应该是给listView 设置Adapter的时候 出了问题,具体哪出问题了,通过你的描述还不是很清晰如何遍历并获取listview中checkbox是不是选中以及该项的id?
这是我之前解决这个问题写的东西,直接贴上来,你看下吧。
private List<Boolean> originalFoundedDevicesState; //有一个保存状态的list
给listview绑定adapter:
private CheckAdapter foundedDevices;
private ListView foundedList;
foundedDevices=new CheckAdapter(AddingDevicesAct.this,originalFoundedDevices,originalFoundedDevicesState);
foundedList.setAdapter(foundedDevices);
foundedList.setItemsCanFocus(false);foundedList.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);foundedList.setOnItemClickListener(new OnItemClickListener()
public void onItemClick(AdapterView<?> parent, View view, int position,
long id)
// TODO Auto-generated method stub
);
2.自己为checkbox复写个adapter:
class CheckAdapter extends BaseAdapter
Context mContext;
List<Device> mData;
List<Boolean>status;
LayoutInflater mInflater;
CheckBox checkBox;
HashMap<Integer,View> lmap=new HashMap<Integer,View>();
public CheckAdapter(Context context,List<Device> data,List<Boolean> DeviceStatus)
mInflater=LayoutInflater.from(context);
mData=data;
status=DeviceStatus;
public int getCount()
// TODO Auto-generated method stub
return mData.size();
public Object getItem(int position)
// TODO Auto-generated method stub
return mData.get(position);
public long getItemId(int position)
// TODO Auto-generated method stub
return position;
public View getView(final int position, View convertView, ViewGroup parent)
// TODO Auto-generated method stub
if(lmap.get(position)==null)
convertView=mInflater.inflate(R.layout.child,parent, false);
checkBox=(CheckBox)convertView.findViewById(R.id.devices);
convertView.setTag(checkBox);
else
checkBox=(CheckBox)convertView.getTag();
checkBox.setId(position);
checkBox.setChecked(status.get(position));
checkBox.setText(mData.get(position).toString());
checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
// TODO Auto-generated method stub
status.set(buttonView.getId(), isChecked);
notifyDataSetChanged();
);
return convertView;
3.最后可以根据其是否被选中状态判断某项是否被选中,并提取id:
for(num1=0;num1<originalFoundedDevicesState.size();num1++)
if(originalFoundedDevicesState.get(num1))
finalPairedDevices.add(new Device(originalFoundedDevices.get(num1).getName(), originalFoundedDevices.get(num1).getAddress()));
private PromotionManageTo promotionManageTo;
private List<PromotionManageTo> productClass;
get…
set…
JSP里面:
<s:iterator value="productClass" status="productClassLength">
<td>
<input type="checkbox" name="promotionManageTo.productId" value="<fs:property value="productId"/>" <c:if test="$fn:containsIgnoreCase(promotionManageTo.productId, productId)">checked="checked"</c:if> />
</td>
</s:iterator> 参考技术B 记录在map
里,每次选中或取消的时候记录当前位置存放到map中,每次getview的时候去查map当前位置是否被选中的。
以上是关于如何获取listview里选中的checkbox的主要内容,如果未能解决你的问题,请参考以下文章