ListVIew单击事件和长按事件失效,

ListView的item中加入CheckBox后 导致ListView对OnItemClick事件无法响应 原因是因为CheckBox的事件响应优先级高于List Item,所以屏蔽了ListItem的单击事件。
网上好多回答都是将checkBox的click事件屏蔽掉去,如下所示:


 <CheckBox   
    android:id="@+id/cb_process_manager_state"  
    android:layout_width="wrap_content"  
    android:layout_height="wrap_content"  
    android:layout_alignParentRight="true"  
    android:layout_marginRight="10dip"
    android:onClick="false"
    android:clickable="false"/>  

在上面代码中多添加了两个属性 android:onClick=“false” android:clickable=“false"这样就可以让checkBox事件不起作用了。

  但是经过测试发现,这样还是不行。还需要做一下改变:

在item的根元素中增加这个属性:android:descendantFocusability=”blocksDescendants”,这样就可以触发OnItemClick和OnItemLongClickListener事件了。
附:


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会覆盖子类控件而直接获得焦点

你可能感兴趣的:(ListVIew单击事件和长按事件失效,)