android讲义2之输入界面

布局文件:

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>


posted on 2012-03-05 11:24  lee0oo0  阅读(353)  评论(0编辑  收藏  举报