CardView not shown in RecyclerView

前端 未结 3 527
面向向阳花
面向向阳花 2021-01-25 14:18

I have a problem which is driving me nuts. Basically it is a simple RecyclerView which displays a cardview. There are a lot of posts out there already, which I checked. I have a

3条回答
  •  时光取名叫无心
    2021-01-25 15:04

    You are using RecyclerView with vertical orientation (in Java code)

    In the Activity XML you are setting the layout height to Wrap_Content

    The card layout also has an height of match_parent

    They will not work like that, I lost three days on this

    Try to give fix height to your card layout, test also other alteration of other layout, it will work for you

    Good luck

提交回复
热议问题