Android开发:listview 响应问题

1.listview 响应问题
ListView的listitem里面含有Button CheckBox之类的子控件的时候,item不能获取焦点,响应容易出问题。

solution:item布局文件根元素设置属性 android:descendantFocusability="blocksDescendants"

android:descendantFocusability
Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.
beforeDescendants:viewgroup会优先其子类控件而获取到焦点
afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

你可能感兴趣的:(Android开发:listview 响应问题)