标签:class 点击 属性 code listen box span nbsp item
如果在ListViewItem中有Button或者Checkable的子类控件的话,那么默认focus是交给了子控件,而ListView的Item能被选中的基础是Item本身
能够获取Focus,所以点击Item无法获取点击响应。可以通过以下两种方法之一进行解决:
1、在button、checkbox对应的view处加上
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"
2、在Item处最多层添加属性
android:descendantFocusability="blocksDescendants"
ListView setOnItemClickListener无效原因分析
标签:class 点击 属性 code listen box span nbsp item
原文地址:http://www.cnblogs.com/longzhongren/p/6165702.html