listView条目点击没效果

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


android:layout_width="match_parent"

android:layout_height="match_parent"

------------------------------------------------------------------------------

android:descendantFocusability="blocksDescendants"

------------------------------------------------------------------------------

>

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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容