美文网首页
Android开发:listview 响应问题

Android开发:listview 响应问题

作者: J_wendel | 来源:发表于2016-09-10 17:24 被阅读9次

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 响应问题

      本文链接:https://www.haomeiwen.com/subject/relijttx.html