I am having a Linearlayout which is having a Textview and the Recyclerview. The problem is that when RecyclerView's data is increased then when we scroll, the Textview above the recyclerview keeps it position i.e. not scrolled and only RecyclerView's contents are scrolled. I want whole screen to be scroll instead of only RecyclerView scrolling.
<LinearLayout>
<TextView/>
<RecyclerView>
</LinearLayout>
Thanks