I have tried by use of 9-patch drawable as layer list and also used gradient but in both cases i can not get accurate result, how can we design shadow drawable?
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:left="@dimen/_10sdp"
android:right="@dimen/_10sdp">
<shape android:shape="rectangle">
<corners
android:bottomLeftRadius="@dimen/_4sdp"
android:bottomRightRadius="@dimen/_4sdp"
android:topLeftRadius="@dimen/_50sdp"
android:topRightRadius="50sp"
/>
<gradient
android:angle="90"
android:startColor="#0D4c4c4c"
android:endColor="#0D4c4c4c"
android:centerColor="#334c4c4c"
android:type="linear" />
</shape>
</item>
<item android:bottom="@dimen/_7sdp">
<shape android:shape="rectangle">
<solid android:color="#b9b9b9" />
</shape>
</item>
</layer-list>

you can set this tag in your xml file:
android:elevation="6dp"