Using the following to populate my ListView with checkbox-supported list:
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_checked,
new String[] {"item 1", "item 2"}));
All what I want is to be able to check some items “programatically” before any interaction from the user!! How can I do this?!
See the setItemChecked method on the ListView. After configuring the choice mode you can use it to set the check state of the desired rows.