插入新项目时如何防止recyclerview自动滚动到底部?

2024-03-07

我在用RecyclerView查看我的数据,但是当有很多项目时,RecyclerView每次插入新项目时都会自动滚动到底部。如何预防呢?

这是插入代码:

@Override
public void onChildAdded(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {

    getOneMessage(dataSnapshot.getKey(), new OneMessageCallBack() {
        @Override
        public void OnCallBack(Object_Message message) {

            Object_Conversation conversation=new Object_Conversation(dataSnapshot.getKey(),message);

            mConvers_List.add(conversation);
            mConvers_Adapter.notifyItemInserted(mConvers_List.size()-1); 
        }
    });
}

这是 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center">


    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_conversations"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="none"
        android:background="@color/white">

    </android.support.v7.widget.RecyclerView>

</LinearLayout>


尝试使用

android:descendantFocusability="blocksDescendants"

在回收者视图中。这将帮助您避免自动滚动

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

插入新项目时如何防止recyclerview自动滚动到底部? 的相关文章

随机推荐