I have a multiline EditText for recieving a query.
It looks like this
So far I have used the stroke but it isnt the same.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
     <shape android:shape="rectangle" >
         <gradient
            android:angle="180"
            android:centerColor="@color/white"
            android:endColor="@color/white"
            android:gradientRadius="360"
            android:startColor="@color/white"
            android:type="sweep" />
    <stroke
        android:width="0.5dp"
        android:color="@color/light_gray" />
  </shape>
</item>
<item
       android:bottom="2dp"
       android:left="3dp"
       android:right="2dp"
       android:top="2dp">
        <shape android:shape="rectangle" >
              <solid android:color="@color/white" />
        </shape>
</item>
</layer-list>
what i achieved
The only thing missing is the gradient on all the sides of the corner.
I have referred few links here, here.
Anyone know the answer. Help. Thanks in advance.

