I have made a custom ArrayAdapter for a ListView, in order to customize the rows of the list with some elements.
The problem I have is that I cannot select an item, nothing happens when I click. Is it something I have to implement in my custom ArrayAdapter? It only has a constructor and a getView method. When I instantiate my list and implement the onListItemClick, it is ignored, so I think it is something to do with my custom adapter... I have researched through examples but I have found nothing.
What should I do?
EDIT: In each row I'm using a Checkbox, and a LinearLayout that contains TextViews. This LinearLayout is the one that should be selectable.