Unable to remove extra space between CardView items - Scrollable RecyclerView

前端 未结 5 1079
忘了有多久
忘了有多久 2021-01-19 00:39

Folks,

I am out of options while attempting to removing extra space between cardview items in my recyclerview below is the current output. Please suggest.

5条回答
  •  [愿得一人]
    2021-01-19 00:50

    In the card view xml change in the overall parent layout width to wrap content.

    android:layout_width="match_parent"
    

    to

    android:layout_width="wrap_content"    
    

提交回复
热议问题