I have a list view with two text view and one edit text in each row , list view setOnItemClickListener() is not working.
Here My Java Code.
In my opinion, because there is Button or ImageButton in your custom list item layout.
So there is two solution,
Replace the button to other elements, and remove onClick listener in the Adapter code. This is the easy way to solve this.
Disable the button focus, like this,
android:focusable="false" android:focusableInTouchMode="false"
Please refer this ListView setOnItemClickListener not working by adding button
Have fun. @.@