Install your button in the xml file: android:focusable="false"
This is because your button focuses. So, now you can use both onClick for your buttons and onItemClick for each row in the ListView, telling it that Button should not be configured.
source
share