首页 > 代码库 > EditText添加边框
EditText添加边框
首先准备两张图片,一张是EditText获得焦点后的边框背景,一张是没有获得焦点时的背景,注意制作成9.png样式的图片,然后在drawable里添加一个selector_edittext_bg.xml文件,内容如下:
<?xml version="1.0" encoding="utf-8"?><selectorxmlns:android="http://schemas.android.com/apk/res/android"><itemandroid:drawable="@drawable/edit_pressed"android:state_focused="true"/><itemandroid:drawable="@drawable/edit_normal"/></selector>
然后在values文件夹下新建一个style.xml文件,内容如下:
<?xml version="1.0" encoding="utf-8"?><resources><stylename="my_edittext_style"parent="@android:style/Widget.EditText"><itemname="android:background">@drawable/selector_edittext_bg</item></style></resources>
最后在EditTex上使用我们新建的样式就可以了:
<EditTextandroid:id="@+id/v_value"style="@style/my_edittext_style"android:layout_width="0.0dip"android:layout_height="wrap_content"android:layout_weight="1"android:hint="@string/edit_key"android:imeOptions="actionDone"android:inputType=""/>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。