I am implementing ListView in my code. But When I click on the items, it does not respond respond to the click in any way. Could someone help me please? Thanks
In my case a problem was in fact that a ListView contained HorizontalScrollViews.
HSV consumes clicks over items and doesn't return OnItemClick to the ListView.
I solved the problem when wrote an OnClickListener inside an adapter that returns a callback to the ListView. See here: https://stackoverflow.com/a/43653085/2914140.