Skip to content Skip to sidebar Skip to footer

Cardview Is Not Showing Properly In Recyclerview

I want to show card view in recycler view. I have compiled card view library in gradle file but the problem is card view is not showing there is no elevation and shadow it is showi

Solution 1:

You need to use app:cardUseCompatPadding="true" in your CardView

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardElevation="3dp"
    app:cardUseCompatPadding="true"
    app:cardBackgroundColor="#fff"
    app:cardCornerRadius="3dp"
    app:contentPadding="3dp">

Post a Comment for "Cardview Is Not Showing Properly In Recyclerview"