Set Height of Inner RecyclerView wrap_content

前端 未结 2 1836
别跟我提以往
别跟我提以往 2021-01-13 17:23

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

2条回答
  •  春和景丽
    2021-01-13 17:53

    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.

    
    
    
    
    

提交回复
热议问题