4

您如何在一侧(水平/垂直)显示一个非常大的项目列表,并允许它自由滚动/拖动 - 就像谷歌表格一样?

我尝试过使用 aNestedScrollView和 a RecyclerView,但一次只能向一个方向滚动,并且我需要它能够自由拖动(不需要捏合/缩放功能,但如果可以做到,那就是奖金)。

这是我尝试过的 GIF,它有效,但绝对不是我想要的。

在此处输入图像描述

这是布局文件:

<?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">

    <include
        layout="@layout/include_toolbar"
        android:id="@+id/toolbar" />

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_biscroll"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </android.support.v4.widget.NestedScrollView>

</LinearLayout>
4

2 回答 2

5

我终于得到了答案:使用自定义的 LayoutManager 实现。

我删除了外层ScrollView,添加FixedGridLayoutManager到我的代码中,然后将其用作 RecyclerView 的布局管理器:

FixedGridLayoutManager layoutManager = new FixedGridLayoutManager();
layoutManager.setTotalColumnCount(adapter.getItemCount()); // This probably needs to update when item count is changed
recyclerView.setLayoutManager(layoutManager);
于 2018-04-23T09:03:15.640 回答
0

您是否尝试过将回收站视图放在滚动视图中?

于 2018-01-11T08:03:54.633 回答