解决RcyclerView嵌套EditText时,产生的焦点冲突,导致RecyclerView自动滑动问题
Posted zhang106209
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决RcyclerView嵌套EditText时,产生的焦点冲突,导致RecyclerView自动滑动问题相关的知识,希望对你有一定的参考价值。
解决方法一:
在RecyclerView中设置android:descendantFocusability属性
android:descendantFocusability="blocksDescendants"
属性介绍
1、afterDescendants:子控件优先获得焦点,当没有任何一个子控件获取到焦点时(即子控件不需要获取焦点时),父控件才会获取到焦点;
2、beforeDescendants :父控件会优先于子控件而获取到焦点;
3、blockDescendants:父控件会阻塞子控件获取焦点,即父控件会覆盖子类控件而直接获得焦点(只有父控件获得焦点);
解决方法二:
自定义layoutManager
/**
* 为了解决recycle人View上添加的headView 中的EditText等控件获取了焦点导致RecyclerView 莫名滚动
*/
public class FocusLinearLayoutManager extends LinearLayoutManager
public FocusLinearLayoutManager(Context context)
super(context);
public FocusLinearLayoutManager(Context context, int orientation, boolean reverseLayout)
super(context, orientation, reverseLayout);
public FocusLinearLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes)
super(context, attrs, defStyleAttr, defStyleRes);
/**
* public boolean requestChildRectangleOnScreen (View child, Rect rectangle, boolean immediate)
* <p>
* 当组里的某个子视图需要被定位在屏幕的某个矩形范围时,调用此方法。重载此方法的ViewGroup可确认以下几点:
* <p>
* * 子项目将是组里的直系子项
* * 矩形将在子项目的坐标体系中
* 重载此方法的ViewGroup应该支持以下几点:
* * 若矩形已经是可见的,则没有东西会改变
* * 为使矩形区域全部可见,视图将可以被滚动显示
* 参数
* child 发出请求的子视图
* rectangle 子项目坐标系内的矩形,即此子项目希望在屏幕上的定位
* immediate 设为true,则禁止动画和平滑移动滚动条
* <p>
* 返回值
* 进行了滚动操作的这个组(group),是否处理此操作。
*
* @param parent
* @param child
* @param rect
* @param immediate
* @return
*/
@Override
public boolean requestChildRectangleOnScreen(RecyclerView parent, View child, Rect rect, boolean immediate)
//这里的child 是整个HeadView 而不是某个具体的editText
LogUtils.e("requestChildRectangleOnScreen()====> chlild==", child.getId() + "parent==" + parent.getId());
return false;
@Override
public boolean requestChildRectangleOnScreen(RecyclerView parent, View child, Rect rect, boolean immediate, boolean focusedChildVisible)
//这里的child 是整个HeadView 而不是某个具体的editText
LogUtils.e("requestChildRectangleOnScreen( focusedChildVisible=)====> chlild==", child.getId() + "parent==" + parent.getId());
return false;
参考:
https://www.jianshu.com/p/827fd1195cc6
https://blog.csdn.net/okg0111/article/details/79886421
以上是关于解决RcyclerView嵌套EditText时,产生的焦点冲突,导致RecyclerView自动滑动问题的主要内容,如果未能解决你的问题,请参考以下文章
关于 ScrollView 中嵌套 EditText,输入多行会使整体滚动的问题
android中NestedScrollView嵌套EditText,导致滑动冲突问题