I have added RecyclerView inside my NestedScrollView. Basically I want RecyclerView to scroll with other Views. The problem that I am facing is that fo
RecyclerView
NestedScrollView
This case of RecyclerView inside NestedScrollView.
RecyclerView is calling onCreateViewHolder() times equal to your data size.
onCreateViewHolder()
If data has 200 items, it freezes for onCreateViewHolder() to be called 200 times.