Customize the CheckedTextView for ListView
android, checkedtextview, listview
Solution
For that you need to create a custom `LinearLayout` that implements `Checkable` and the create your `row.xml` using that custom `LinearLayout` which will work as `Checkable`. `Here` is a nice tutorial explaining the same with an example.
Problem
As far as I know, the ListView embeds CheckedTextView to form the list, but every CheckedTextView has only one TextView and a CheckBox. What I want to do is adding some TextViews to the CheckedTextView, like this: TextView | TextView | TextView | CheckBox| ---- CheckedTextView How to customize the CheckedTextView? Any help will be appreciated!