RecyclerView滚动意外移动

时间:2017-01-25 01:28:22

标签: java android xml android-recyclerview

我有一个垂直的RecyclerView,其中每个单元格都有一个水平的RecyclerView。水平RecyclerView中的每个单元格都有一个EditText。当EditText在click事件中获得焦点时,滚动将移动到最后一个单元格。

有没有人有过这种经历并知道这个问题的解决方案?

的EditText:

<EditText
    android:id="@+id/item_grade_et_quantidade"
    android:layout_width="60dp"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:inputType="number"
    android:imeOptions="actionDone"
    android:selectAllOnFocus="true"
    android:text="0"/>

水平的RecyclerView XML:

<android.support.v7.widget.RecyclerView
     android:id="@+id/rv_list_produto_childs"
     android:scrollbars="horizontal"
     android:layout_width="match_parent"
     android:fadeScrollbars="false"
     android:layout_height="185dp" />

水平的RecyclerView Java:

rvProdutoChilds.setHasFixedSize(true);
LinearLayoutManager mLinearLayoutManager = new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false);
rvProdutoChilds.setLayoutManager(mLinearLayoutManager);

问题示例:

enter image description here

2 个答案:

答案 0 :(得分:0)

如果垂直回收站的每个单元格中的努力文本数量都是固定的,您应该尝试使用水平滚动视图而不是水平回收视图。

答案 1 :(得分:0)

尝试在EditText父布局中放置属性android:focusableInTouchMode =“false”。