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!
For that you need to create a custom
LinearLayout
that implementsCheckable
and the create yourrow.xml
using that customLinearLayout
which will work asCheckable
.Here
is a nice tutorial explaining the same with an example.