我想在ScrollView中使用RecycleView,但是当我这样做时,我的滚动视图修复了我停止滚动的那一刻。如何让它更顺畅? 这是我使用的xml文件:
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"/>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fastScrollEnabled="true"
android:layout_marginTop="143dp"
android:scrollbars="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</ScrollView>