菜鸟学android---ListView和checkBox组合常见问题

1.checkbox无法选择;

2.listview内容超出一页,滑动ListView时,checkbox选择的值会刷新成原来状态值(即没选中);

3.选择listview所有checkbox值之后,只能获取当前可见的checkbox的值,向后滑动选择的值无法获取。


解答:

       1、设置checkbox的属性值为:android:focusable=”false” ,防止焦点独占,解决checkbox无法选择的问题。

       2、重写Adapter中getView方法,为每个checkBox设置初始值,setChecked(true|false);

       3、在getView方法中重新获取第二参数,代码如:

public View getView(int paramInt, View paramView, ViewGroup paramViewGroup) {
		paramView = this.mInflater.inflate(lytId, null);
		Object selected = (Boolean)((Map)this.mList.get(paramInt)).get(ParamAttr.SELECTED);
		((ImageView)paramView.findViewById(R.id.badge)).setBackgroundResource(R.drawable.icon);
		((TextView)paramView.findViewById(R.id.file_name)).setText((String)((Map)this.mList.get(paramInt)).get(ParamAttr.FILENAME));
		((TextView)paramView.findViewById(R.id.file_path)).setText((String)((Map)this.mList.get(paramInt)).get(ParamAttr.FILEPATH));
		((CheckBox)paramView.findViewById(R.id.checkBox)).setChecked(selected == null ? false : (Boolean) selected);
		return paramView;
	}

你可能感兴趣的:(listview,string,null,object,android,path,菜鸟学android)