Is it possible to return a view (a row in a ListView) ?
I want to disable all the checkboxes:
public void disableCheckboxes()
{
for(int i =0; i < getCount(); i++)
{
View view = (View) getView(i, null, null);
CheckBox checkBox = (CheckBox)view.findViewById(R.id.playlist_checkbox);
checkBox.setVisibility(CheckBox.INVISIBLE);
}
}