I finally fixed the issue with friends guidance. I changed the code to this and worked as well.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true">
<shape >
<gradient
android:angle="90"
android:centerColor="@color/Lightgray"
android:endColor="@color/White"
android:startColor="@color/LightBlue"/>
<corners android:radius="12dip" />
<stroke
android:width="0dip"
android:color="@color/LightBlue" />
</shape>
</item>
<item android:state_pressed="false" >
<shape >
<gradient
android:angle="90"
android:centerColor="#ff008888"
android:endColor="@color/LightBlue"
android:startColor="@color/Lightgray"/>
<corners android:radius="12dip" />
<stroke
android:width="0dip"
android:color="@color/LightBlue" />
</shape>
</item>
</selector>
source
share