ListView点击无效

item项中有Button,CheckBox等组件会导致ListView中的Item无法设置点击事件

解决:在Button属性中加上android:focusable="false"就可以了。

(或者android:clickable="false"

android:focusableInTouchMode="false")

原文地址:https://www.cnblogs.com/linxiaojiang/p/2955269.html