布局文件:
android:selectAllOnFocus="true" //如图"ggg"表示当EditText取得焦点会全选所有内容
android:password="true" //表示输入的内容为密码保护形式
android:phoneNumber="true" //表示输入的内容为数字形式
android:background="@drawable/bg_border" //指示background的内容在drawable文件夹的bg_border.xml文件名中
bg_border.xml:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#000000"/>
<stroke android:width="2dip" android:color="#ff0000" />
</shape>