I\'ve seen example com.example.android.apis.view.List11 from ApiDemos. In that example, each row takes the view android.R.simple_list_item_multiple_
Each such view has a TextView and a CheckBox.
No, it doesn't. It has a CheckedTextView
.
So what do I need to do to make a multiple choice list with my custom view for each row?
Try making the CheckBox
android:id
value be "@android:id/text1"
and see if that helps. That is the ID used by Android for the CheckedTextView
in simple_list_item_multiple_choice
.