1、项目需求
- 本项目是一个安卓项目,启动页面有一个输入框。输入框的属性如下:
(1)宽高:包裹内容即可
(2)密码输入框
(3)文字提示为:请输入密码(不超过5个字符);提示文字颜色:colorPrimary;
(4)输入字符不超过5个
2、项目分析
- 考察EditText属性:
(1)密码输入框 inputType为textPassword
(2)提示文字 hint ,textColorhint
(3)最多字符数 maxLength
3、布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom