Reputation: 107
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
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