I use this code for elevation to leaner layout
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="0dp"
app:cardElevation="2dp"
app:cardPreventCornerOverlap="false"
app:contentPadding="0dp"
android:layout_marginLeft="-3dp"
android:layout_marginTop="-3dp"
android:layout_marginRight="-3dp">
This code work for BOTTOM of layout, but i want elevation to top of layout
How i can ?