How to use RecyclerView inside NestedScrollView?
RecyclerView content is not visible after setting adapter.
UPDATE
if you want to use RecyclerView in NestedScrollView this is a simple tricky, just set :
RecyclerView
recyclerView.setHasFixedSize(false) (java/kt)
android:nestedScrollingEnabled="false"
android:layout_height="wrap_content"
android:overScrollMode="never"
NestedScrollView
this is work for me, and you can use many RecyclerView in NestedScrollView with this too.