MuM6oJuM6o
MuM6oJuM6o

Reputation: 107

Listviews with Checkboxes in Android

Can a Listview containing Checkboxes(CheckBox and String label next to the checkbox. The strings are fetched from a string array tab in the strings.xml file) be implemented without a custom adapter?

Upvotes: 0

Views: 45

Answers (1)

Purvil Bambharolia
Purvil Bambharolia

Reputation: 681

No, it can't be done without using a custom adapter. You can easily use a custom adapter to create custom list views. Why don't you want to use a custom adapter?

Upvotes: 2

Related Questions