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.
>
All you need to do is remove the following two lines from the xml for the CardLayout
:
android:layout_marginTop="2dip"
android:layout_marginBottom="2dip"
What this does is sets the seperation between the two layouts, in this case you have 4dip
(2 at the top and 2 at the bottom). You can also try to reduce it to 1 dip
and verify the effect it gives you.
Hope this helps :)