原文:http://pxq19890719.iteye.com/blog/1168543
当我们使用listView嵌套button或者其它clickable控件时会出现listView的onitemClick事件不响应的问题。我们只需要在item的xml文件中的根布局中加上一句:
android:descendantFocusability="blocksDescendants"
屏蔽item中抢夺focus的控件权限即可解决问题。
原文:http://pxq19890719.iteye.com/blog/1168543
当我们使用listView嵌套button或者其它clickable控件时会出现listView的onitemClick事件不响应的问题。我们只需要在item的xml文件中的根布局中加上一句:
android:descendantFocusability="blocksDescendants"