Android 利用Sharp样式设置文本框EditText圆角形状


1.首先新建样式文件editsharp.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <shape xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:shape="rectangle" >
 4 
 5 <!--     <gradient  6         android:angle="45"
 7         android:endColor="#CCCCCC"
 8         android:startColor="#CCCCCC" /> -->
 9 
10     <padding 11         android:bottom="7dp"
12         android:left="7dp"
13         android:right="7dp"
14         android:top="7dp" />
15     <!-- 设置圆角矩形 -->
16     <corners android:radius="3dp" />
17 
18     <stroke 19         android:width="5px"
20         android:color="#1199EF" />
21 
22     <solid android:color="#CCCCCC" />
23 
24 </shape>

2.在布局文件中引用样式文件:

    <EditText
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:background="@drawable/editsharp" />

3.文本框效果图如下:

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM