I have a listview that is built from textviews with the built in Resource Layout simple_list_item_multiple_choice. syntax like this :
ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_multiple_choice, internet);
If the user clicks an item list, the checkbox of selected item has to be checked.
I know to implement OnItemClickListner, But after it what should I do to check the selected item.