I'm developing a app which requires to have a recyclerview with multiple view type for which I'm using following approach https://stackoverflow.com/a/26245463/6350239 , but for my requirement i need to have recyclerview in one of the row of a parent recyclerview, though I have achieved required layout:
- My onbindViewholder for child recyclerview is called at once only for all the items, & lastvisibleItemposition is always the last item though its not literally visible on screen.
- I doubt that child recyclerview is not recycling its items.
How do I check if My child recyclerView is Recycling?? also is it right to have recyclerview as a rowitem in another recyclerview ??