Andorid中UI控件的详细介绍(四)——EditText

一、EditText的类结构:
java.lang.Object
↘android.view.View
↘android.widget.TextView
↘android.widget.EditText
由类的结构图可以看出来,EditText是继承与TextView的,所以EditText继承了TextView的所有属性。
Andorid中UI控件的详细介绍(四)——EditText_第1张图片
其中android:password属性不推荐使用,可以用inputType=“textPassword”代替:
1、在程序中设置EditText以明文显示:
setInputType(InputType.TYPE_CLASS_TEXT);
2、在程序中设置EditText以密码显示:
setTnputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);

二、android:inputType的可选项:
1、android : inputType = “text” 默认的
2、android : inputType = “textPersonName” 人名
3、android : inputType = “textPassword” 文本密码
4、android : inputType = “numberPassword” 只能输入数字的密码
5、android : inputType = “textEmailAddress” 电邮地址
6、android : inputType = “phone” 电话号码
7、android : inputType = “textPostalAddress” 邮政地址
8、android : inputType = “time” 时间
9、android : inputType = “date” 日期
10、android : inputType = “number”数字

三、EditText常用方法:
1、void setText(int resid);// 传入字符串资源,例如(R.String.xxx)
void setText(char[] text, int start, int len);
void setText(CharSequence text);//CharSequence 是一个接口,可以传入String,StringBuffer,StringBuilder等
2、EditText getText();//根据需要toString()转换为字符串

四、EditText常用属性与方法
Andorid中UI控件的详细介绍(四)——EditText_第2张图片

你可能感兴趣的:(Android基础)