水平滚动视图中的Recyclerview无法平滑滚动

时间:2018-08-13 16:27:16

标签: android xml scroll android-recyclerview horizontal-scrolling

我在horizo​​ntalscrollview中使用了vertical recyclerview,因为我的recyclerview项的宽度大于屏幕尺寸。我希望我的recyclerview垂直和水平滚动。当我在水平或垂直方向上正确滑动手指时,水平和垂直滚动都可以流畅地工作,但是当我以一定角度(假定为92度)垂直滑动手指时,垂直滚动不起作用。我怎样才能解决这个问题。

recyclerview xml代码

<HorizontalScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.v7.widget.RecyclerView
        android:id="@+id/rvTransactions"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:listitem="@layout/single_transaction_layout"
        android:nestedScrollingEnabled="false"
        />
</HorizontalScrollView>

我已经搜索了解决方案,但发现了thisthis,但是它不能解决我的问题。

0 个答案:

没有答案