在NestedScrollView中的RecyclerView中滚动问题

时间:2015-12-09 12:05:37

标签: android android-recyclerview

我在NestedScrollView中添加了RecyclerView,就像这样

<android.support.v4.widget.NestedScrollView
    android:id="@+id/scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="false"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

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

在Java代码中,我已经指定了这样的高度

recyclerView.setNestedScrollingEnabled(false);
recyclerView.setHasFixedSize(true);
recyclerView.setAdapter(new DataManager());   
recyclerView.setHasFixedSize(true);
recyclerView.setMinimumHeight(3000);

有谁能告诉我应该通过什么高度以便RecyclerView正常工作?

1 个答案:

答案 0 :(得分:1)

  

试试this

     

此处setMinimumHeight(height)用于动态计算高度的地方。