ListView items are not clickable. why?

Android doesn’t allow to select list items that have focusable elements (buttons).
Modify the button’s xml attribute to:

android:focusable="false"

It should still be clickable, just won’t gain focus…

Leave a Comment