组件分类
文本类组件
文本框TextView
基本使用
编辑框EditText
基本使用
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="请输入密码"
android:lines="5"></EditText>
InputType:
- textPassword:设定为密码,也就是显示星号
- number:输入仅为数字
- lines:设置行数