Skip to content Skip to sidebar Skip to footer

Gray Line Inside Cardview :)?

How do I remove the gray line (you can see on the screen) at the bottom of CardView? Archive with source-code I reviewed everything. I don't understand what the problem is.

Solution 1:

Try this -

android:divider="@null"

Or from your code -

getListView().setDivider(null);
getListView().setDividerHeight(0);

Post a Comment for "Gray Line Inside Cardview :)?"