滚动右半屏时的recyclerview问题

recyclerview problem when scrooling right half screen

当从移动设备的左半屏滚动时发生滚动,但当我从右半屏滚动时没有发生滚动。

这是我的 xml 布洛德。

<androidx.recyclerview.widget.RecyclerView
                android:id="@+id/postRecyclerView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_margin="2dp"
                android:nestedScrollingEnabled="false">

            </androidx.recyclerview.widget.RecyclerView>

我的Java密码是

val layoutManager = LinearLayoutManager(this)
        layoutManager.orientation = LinearLayoutManager.VERTICAL
        binding.postRecyclerView.layoutManager = layoutManager
        binding.postRecyclerView.setHasFixedSize(false)
enter code here

经过大量搜索,我终于找到了解决方案。实际上我在该页面中使用了浮动按钮,因为在 Recyclerview 中没有发生右侧滚动的高度。