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.在布局文件中引用样式文件:

1
2
3
4
5
<EditText
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:background="@drawable/editsharp" />

3.文本框效果图如下:

 

posted @   _YMW  阅读(32551)  评论(1编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示