美文网首页
Android ListView的item点击事件

Android ListView的item点击事件

作者: 拉格朗日 | 来源:发表于2018-03-28 11:27 被阅读77次

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

      我们使用的是第三个。

    相关文章

      网友评论

          本文标题:Android ListView的item点击事件

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