I have a recyclerview inside another recyclerview. I want to make height of inner recyclerview \"warp_content\".
I came to know it is possible with new version of re
Setting recyclerview item works for me.
Outer wrapper relative layout is added intentionally to address issue layout_height="wrap_content"
does NOT
occupy the height of all the elements added to it via adapter. The result is cut out
items that is outside of device viewport when it loads initially.
Wrapping "RecyclerView" with "RelativeLayout" fixes the issue on Marshmallow devices.