I have a ListView where users can swipe and dismiss items. To implement swipe dismiss, I have set a touch listener to the list view.
I want to handle clicks on each item in the list view too. But, if I set an on click listener to the items, swipe dismiss doesn't work. This should be due to each item handling touch events and not passing them to conainer ListView.
Can someone suggest a way which I can intercept click events on items without disrupting swipe dismiss?