Hello I am am working on demo application in which i am using the card view of support library. By default it is adding shadow around it. I want to remove this shadow & shou
Try to put the elevation in Xml.
app:cardElevation="0dp"
OR
cardView.setCardElevation(0);
And check you are using the latest CardView library.