I have a ListView that contains button on each item.
I want that the item click will cause the OnItemClick event of the list to fire,
as that event contains more info (id,position) than the OnClick event of the button.
This is an important action on the list, that’s why I need the button and don’t want a regular item click will cause it to fire (I guess making the button focusable will do the trick).
Is this possible?
try to make your own adapter for the list.In getView() method do your necessory requirements.