我的ListView
包含十行。每行包含CheckBox
. 我将如何检查和取消选中CheckBox
使用setOnItemClickListener
示例代码:(它不适合我)
listview.setOnItemClickListener( new OnItemClickListener()
{
public void onItemClick( AdapterView<?> parent, final View v, final int position, long id )
{
Toast.makeText( this, " Position is " + position, Toast.LENGTH_SHORT ) .show();
holder.checkbox = ( CheckBox ) v.findViewById( R.id.lock_File_CheckBox );
holder.checkbox.toggle();
}
});
我们如何确定CheckBox
是选中还是未选中?