我在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正常工作?