解决ListView的OnItemClickListener无效问题

当我们自定义ListView的item时,常常会加入诸如Button,ImageButton,CheckBox等控件,这时候我们会发现:ListView.setOnItemClickListener(new ...)没有效果,点击Item没有反应,那是因为此时的焦点已经被子view获取(Button,ImageButton...),所以响应点击操作的并不是Item。

解决方案:

  • descendantFocusability

API描述如下:
android:descendantFocusability
Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.
Must be one of the following constant values.


该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。
属性的值有三种:

  • beforeDescendants:viewgroup会优先其子类控件而获取到焦点
  • afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
  • blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

通常我们用到的是blocksDescendants,在Item的根布局设置
android:descendantFocusability="blocksDescendants"

  • item_list_view.xml


    
    
    

    


ok,设置好了之后,子view的可以设置OnClick(),Item也可以setOnItemClickListener()了,又可以愉快的玩耍了。

疑问?

从字面意义理解,[beforeDescendants]也应该是可以的,但是我设置了之后没效果,如果你知道,求指点。

参考文档: android:descendantFocusability用法简析

你可能感兴趣的:(解决ListView的OnItemClickListener无效问题)