I want to add shadow around ImageView
I tried elevation
<ImageView
android:layout_margin="10dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:src="@drawable/ic_icon_compass"
android:elevation="2dp"
android:background="@drawable/ic_circle_white"
android:padding="10dp"
android:layout_width="40dp"
android:layout_height="40dp"/>
Layout Preview works fine
But on the device it looks like this
(shadow is cropped at the bottom)
Why does it happen?