I\'m developing an app and I have one ListActivity
, which has choice mode set to choice_mode_multiple
. now i want to override method, which is called w
Use isItemChecked (int position) or setItemChecked(int position, boolean value) if you using standart array adapter and SINGLE or MULTIPLE choise mode. http://developer.android.com/reference/android/widget/AbsListView.html#isItemChecked(int)
Also you can create your custom adapter and inflate row layout with checkbox that can hold onClickListener and CheckedChangedListener. Use search to find example.