您如何在一侧(水平/垂直)显示一个非常大的项目列表,并允许它自由滚动/拖动 - 就像谷歌表格一样?
我尝试过使用 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>