一、EditText(输入框)
EditText和TextView非常类似,都是用于显示文本控件,最大的区别就是EditText可以接收用户的输入。下面就来看看EditText的使用和它的一些属性。
<EditText
android:layout_width="450dp"
android:layout_height="70dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:layout_marginTop="150dp"
android:background="@drawable/unclockpin"
android:hint="请输入密码"
android:textColorHint="#999999"
android:paddingLeft="70dp"
android:textColor="#ffffff"
android:textSize="20dp"
android:maxLines="1"
android:inputType="textPassword"
android:maxLength="6"
android:letterSpacing="0.6"
/>
代码解释:
1,代码首先在activity_main.xml
文件里面添加一个EditText控件,和其他控件一样可以设置输入框的大小和位置还可以设置背景颜色或者添加背景图片;其中:
android:hint="请输入密码"
android:textColorHint="#999999"
是默认提示文本的两个控制属性,前者设置默认提示文本的内容,后者设置提示文本的颜色。
2,有时候我们需要对输入的数据进行限制:
android:maxLines="1"
android:inputType="textPassword"
android:maxLength="6"
android:letterSpacing="0.6"
第一行代码设置输入的数据只能是一行显示,不能换行;第二行代码设置我们输入的数据是一串密码,这样输入字符后,字符会自动变成原点;第三行是限制只能输入六个字符;最后一行代码设置输入的字符之间的距离。下面是一些常用的设置输入框的属性:
margin:设置和父容器的内间距
padding:设置控件的内间距
paddingLeft 设置光标位置
hint:设置默认提示文本
maxLines:设置输入的文本不换行
inputType:设置输入内容 可以调用对应的键盘
cursorVisible:设置光标是否可见
minLines:设置最小行数
maxLines:设置最大行数
PS:当输入的内容超过maxLine,文字会自动向上滚动。
如果想要进入界面时,键盘一直显示,则可以在 ActivityManifest.xml
配置文件里添加一句:
android:windowSoftInputMode="stateAlwaysVisible"
这样键盘就会在进入界面时一直显示了。
补充知识:
dp: device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这个,不依赖像素。
px:pixels(像素). 不同设备显示效果相同,一般我们HVGA代表320x480像素,这个用的比较多。
pt:point,是一个标准的长度单位,1pt=1/72英寸,用于印刷业,非常简单易用;
sp: scaled pixels(放大像素). 主要用于字体显示best for textsize。
二、PIN解锁项目
一、要求:
实现手机PIN解锁功能,包括设置密码六位密码,成功解锁等功能。
二、技术难点:
监听键盘key按下的事件:
1,创建匿名类对象:匿名类的匿名对象
2,让当前这个类Activity来监听事件
3,专门写一个类来监听这个事件 创建一个对象;创建一个匿名对象
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
System.out.println("点击了");
return false;
}
});
4,Lambda表达式
editText.setOnAction.listener((textView,actionId,event) -> {
System.out.println("点击了");
return true;
});
三、代码实现
1,activtiy_main.xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<!--添加背景图片-->
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
android:visibility="visible"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/bg"
android:visibility="visible"/>
<!--输入框,用于接收用户的输入-->
<EditText
android:id="@+id/et_password"
android:layout_width="450dp"
android:layout_height="70dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:layout_marginTop="150dp"
android:background="@drawable/unclockpin"
android:hint="请输入密码"
android:paddingLeft="70dp"
android:textColor="#ffffff"
android:textColorHint="#999999"
android:textSize="20dp"
android:maxLines="1"
android:inputType="textPassword"
android:maxLength="6"
android:letterSpacing="0.6"
/>
<!--文本提示框-->
<TextView
android:id="@+id/tv_alert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="80dp"
android:layout_centerHorizontal="true"
android:text="请设置密码"
android:textAlignment="center"
android:textColor="@color/colorGray"
android:textSize="@dimen/dimen_alert"
android:visibility="visible"/>
</RelativeLayout>
2,MainActivity.java
文件
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private TextView textView;
private EditText editText;
private String password;
private String firstInput;
//1.xml配置文件
//2.使用代码创建
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//通过id获取xml文件里对应的控件
editText = findViewById(R.id.et_password);
textView = findViewById(R.id.tv_alert);
//获取保存的密码
//获取管理资源对象
Resources resources = getResources();
//通过这个对象获取string.xml里面对应的字符串
String fileName = resources.getString(R.string.password_file_name);
//获取共享的SharedPreferences对象:1,文件存在就打开,不存在就创建
final SharedPreferences sharedPreferences = getSharedPreferences(fileName,MODE_PRIVATE);
//通过key获取对应的value
password = sharedPreferences.getString("pwd",null);
//显示提示文本
if(password == null){
textView.setText("请设置密码");
}else{
textView.setText("请输入密码");
}
//监听文本内容改变的事件
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
//获取目前输入的个数
int length = s.toString().length();
if(length > 6){
//获取前六个
editText.setText(s.subSequence(0,6));
//将光标定位到最后
editText.setSelection(6);
}
}
@Override
public void afterTextChanged(Editable s) {
//获取文本内容
String inputPassword = s.toString();
//判断是不是6个
if(inputPassword.length() == 6){
//判断是不是设置密码
if(password == null){
//设置密码
if(firstInput == null){
//设置输入密码的第一次
firstInput = inputPassword;
//提示确认密码
textView.setText("请确认密码");
//清空输入内容
editText.setText("");
}else {
if(firstInput.equals(inputPassword)){
//两次密码一致
textView.setText("设置密码成功");
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("pwd",firstInput);
editor.commit();
}else{
//密码不正确
textView.setText("两次密码不一致,请重新设置");
firstInput = null;
editText.setText("");
}
}
}else{
//密码设置过了
if(inputPassword.equals(password)){
//密码正确
textView.setText("密码正确");
}else{
//密码不正确
textView.setText("密码错误,请重新输入");
//清空
editText.setText("");
}
}
}
}
});
}
}
PS:
1,在values文件夹下面新建一个dimens.xml
文件,在里面配置输入字符串的大小
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="dimen_alert">20sp</dimen>
<dimen name="dimen_textView">20sp</dimen>
</resources>
2,其中TextWatcher()用法:
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
//文本改变前
}
其中有4个参数:
CharSequence s:文本改变之前的内容
int start : 被替换文本区域起点位置
int count:将被替换的文本区域字符数目
-
int after:替换后的文本字符数目
文本 s 中的 start 位置之后的 count 个字符将被替换为 after 个新的字符
注:s为替换前的文本@Override public void onTextChanged(CharSequence s, int start, int before, int count) { //文本改变时 }
其中有4个参数:
CharSequence s:文本改变之后的内容
int start : 被替换文本区域起点位置,setText时是替换所有内容,此时数值为0
int before:被替换之前的文本区域字符数目
-
int count:替换后的文本字符数目
文本 s 中的 start 位置之后的 before 个字符已经被替换为 count 个新的字符
注:s为替换后的新文本@Override
public void afterTextChanged(Editable s) {
// 文本改变后
}
其中1个参数: Editable s:文本改变之后的内容
三、学习感悟
学习这些小控件的使用是为了以后的开发做准备,然后写的这个PIN解锁项目,即练习了新学的输入框,又能够复习前面学过的SharedPreferences保存用户的密码,虽然之前已经学过了用户偏好的方式保存密码,但再一次写的时候还是有点陌生,还是要多写多练才行。