开发者

How to create edit text with rounded corners in android

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.c开发者_Go百科om/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


Hey have a look about the problem in this discussion : How to create EditText with rounded corners? ..I am sure it will surely gonna help you.


Just create an xml file in your drawable folder name as round_corner.xml.And add this following code.

   <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >

        <corners
            android:bottomLeftRadius="3dp"
            android:bottomRightRadius="3dp"
            android:radius="3dp"
             />
        <solid
            android:color="@android:color/white"/>

    </shape>

At Last you add this xml in background property of your Edittext as follows:-

<EditText
   android:id="@+id/ed1"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:background="@drawable/round_corner"
 />

Done..Definitely it works..


Use This Code

 <?xml version="1.0" encoding="utf-8"?>
 <!-- res/drawable/rounded_edittext.xml --> 
<shape xmlns:android="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>


<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:startColor="#ECE9E6"
        android:endColor="#FFFFFF"
        android:angle="270"
        />
    <corners
        android:radius="15dp" />
    <stroke
        android:width="1dip"
        android:color="#ffffff"
        />
    <padding
        android:left="4dp"
        android:top="4dp"
        android:right="4dp"
        android:bottom="4dp"
        />
</shape>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜