一、Android控件概述与属性解析-TextView EditText
TextView:显示文本框控件
EditText:输入文本框
android: id --- 控件的id
android: layout_width --- 控件的宽度
android: layout_height --- 控件的高度
android: text --- 文本内容
android: textSize --- 文本大小
android: textColor --- 文本颜色
android: background --- 控件背景
android: hint --- 输入提示文本 (EditText相比较TextView多拥有的属性)
android: inputType --- 输入文本类型 (EditText相比较TextView多拥有的属性)