My Cardview inside Listview is not showing shadow in Android L(Nexus 5). Also the round edges are not properly shown. Here is the code for Listview\'s Adapter View :
Check you're not using android:layerType="software" in your RecyclerView.
android:layerType="software"
Changing it to android:layerType="hardware" solved the issue for me.
android:layerType="hardware"