When using RecyclerView in NestedScrollView , how should i set the height of RecyclerView

You should use NestedScrollView instead of ScrollView when you’re trying to scroll another view in your parent layout.

It’s very similar to ScrollView and part of the v4 support lib:
https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html

Leave a Comment