EditText添加内容改变的监听器

 

EditText添加内容改变的监听器

mEditText.addTextChangedListener(new TextWatcher() { //EditText中文本内容改变的时候自动调用的方法
    public void onTextChanged(CharSequence s, int start, int before, int count) { //这个CharSequence就是当前的文本输入框中的内容
        String address  = AddressDao.getAddress(s.toString()); tv.setText(address); } public void beforeTextChanged(CharSequence s, int start, int count, int after) { } public void afterTextChanged(Editable s) { } });

 

你可能感兴趣的:(EditText)