I am trying to get a glow effect like the background for edittext
I tried doing it but the background is not as much effective as the image
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="#68F30606"/> <corners android:radius="10dp" /> </shape> </item> <item android:left="1.7dp" android:right="1.7dp" android:top="1.7dp" android:bottom="1.7dp"> <shape android:shape="rectangle"> <solid android:color="@android:color/white"/> <corners android:radius="10dp" /> </shape> </item> </layer-list> Can someone help me to solve this mystery?
