您的位置:首页 > 移动开发 > Android开发

RecycleView去除自动回滚至顶部

2017-11-20 11:35 141 查看
使用 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 会覆盖子类控件而直接获得焦点通常我们用到的是第三种,即在Item布局的根布局加上android:descendantFocusability=”blocksDescendants”的属性就解决啦
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android