Android4.0以后的版本的EditText的新特征是以单下划线的形式出现,但是很多时候我们需要加上边框看起来比较美观.下面请看具体操作:
创新互联公司专注于福州企业网站建设,响应式网站,成都做商城网站。福州网站建设公司,为福州等地区提供建站服务。全流程按需求定制网站,专业设计,全程项目跟踪,创新互联公司专业和态度为您提供的服务分为两部分:未输入文本时的状态(normal)和点击输入文本的状态(focused).
下面是EditText的控件:
<EditText android:layout_width="fill_parent" android:layout_height="36dip" android:background="@drawable/edittext" android:padding="5dip" android:layout_margin="36dip" android:textColorHint="#AAAAAA" android:textSize="15dip" android:hint="@string/asdasd_" android:singleLine="true" />
其中android:background="@drawable/edittext" 是另外定义的edittext.xml选择器(存放在drawable任意文件夹下)下面定义edittext.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_window_focused="false" android:drawable="@drawable/edittext_normal" /> <item android:state_focused="true" android:drawable="@drawable/edittext_focused" /> </selector>
接着就是定义edittext_normal.xml和edittext_focused.xml文件,具体如下:
edittext_normal.xml
<?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#FFFFFF" /> <corners android:radius="3dip" /> <stroke android:width="1dip" android:color="#BDC7D8" /> </shape>
edittext_focused.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <solid android:color="#FFFFFF" /> <corners android:radius="3dip" /> <stroke android:width="1dip" android:color="#728ea3" /> </shape>
效果如图:
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
本文名称:给Android4.X版本的EditText恢复边框-创新互联
网址分享:https://www.cdcxhl.com/article30/jipso.html
成都网站建设公司_创新互联,为您提供网页设计公司、企业网站制作、关键词优化、App开发、动态网站、网站营销
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联