EditTestActivity中的设置
主要是通过调用一个观察者的类
new TextWatcher(),使用这个类的时候要去实现它的三个方法
public void beforeTextChanged(CharSequence s, int start,
int count, int after);
public void onTextChanged(CharSequence s, int start, int before, int count);
public void afterTextChanged(Editable s);
从函数名就可以知道其意思,每当敲击键盘编辑框的文字改变时,上面的三个函数都会执行,beforeTextChanged可以给出变化之前的内容,onTextChanged和afterTextChanged给出追加上新的字符之后的文本;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import com.m520it.com.testintents.R;
/**
* @author Holly
* @time 2017/4/6 11:32
* @desc ${TODD}
*/
public class EditTestActivity extends AppCompatActivity {
private TextWatcher tw;
private EditText pass1;
private EditText pass2;
private EditText pass3;
<