Can anybody tell me how to create an editable textbox with rounded corners in android?
I tried with this code but it's not working:
<?xml version="1.0" encoding="utf-8"?> 
<!--  res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" android:padding="10dp">
    <solid android:color="#FFFFFF" />
    <corners android:bottomRightRadius="0dp"
        android:bottomLeftRadius="0dp" android:topLeftRadius="15dp"
        android:topRightRadius="15dp" />
</shape> 
Thanks
 
     
     
     
     
     
    