I want to show only first few cards of the recyclerview and show a button such as load more or read more then on clicking on it show little more cards and so on.
What i have thought to do is making a button under recyclerview and making only first 4-5 cards in onbindViewholder() of adapter Visible and thus making other cards (or itemview as it is said in adapter class) invisible. But I don't think this would be a good approach.
Can someone suggest a good approach? I tried researching for hours, but haven't came across a near solution that is appropriate.