I have an activity with a ListView. ListView with custom views. I add OnItemClickLIstener to the ListView. and when i click on item, in result i see nothing. Activity with ListV
By setting focusable objects in your row layout, you are preventing the ListView from getting the touch event.
This FrameLayout is consuming the touch event:
Remove the focusable settings so it looks like this:
(You really should organize your XML so that is is readable, in Eclipse use Ctrl+Shift+F.)