Android EditText简单自定义边框样式

1.去掉全部边框 Android:background="@null"。

2.自定义样式:

shape中如果不通过Android:shape来指定形状时,默认是矩形,其中solid代表纯色,corners代表角,radius越大,圆角越大,stroke代表边框线。

首先定义normal和focus两种状态下的style。

xml:edittext_normal


   
   
   
< /shape>

xml:edittext_focus


   
   
   
< /shape>

xml:edittext_background


   
   
< /selector>

注意光标会显示在边框最开始 因为边框有圆角故光标会高度大于edittext边框 只需设置edittext的paddingleft和paddingright。

你可能感兴趣的:(editext,自定义边框,shape,安卓开发,安卓开发基础知识)