TextWatcher

对于一些需求,如非法字符限制(例如不允许输入#号,如果输入了#给出错误提示),做成动态判断更方便一些,而且容易扩展;

     在Android里使用TextWatcher接口可以很方便的对EditText进行监听;TextWatcher中有3个函数需要重载:

    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给出追加上新的字符之后的文本;

[java]  view plain copy
  1. class MyWatcher implements TextWatcher{  
  2.        /**This method is called to notify you that, within s, the count characters  
  3.         * beginning at start are about to be replaced by new text with length after. 
  4.         * 在s中,从start处开始的count个字符将要被长度为after的文本替代 
  5.         * s 为变化前的内容; 
  6.         * start 为开始变化位置的索引,从0开始计数; 
  7.         * count 为将要发生变化的字符数 
  8.         * after 为用来替换旧文本的长度,比如s由1变为12,after为1,由12变为1,after为0; 
  9.         */  
  10.         @Override  
  11.         public void beforeTextChanged(CharSequence s, int start, int count,  
  12.                 int after) {  
  13.             // TODO Auto-generated method stub  
  14.             Log.i("test1""before:s,"+s+",start,"+start+",count,"+count+",after,"+after);  
  15.               
  16.         }  
  17.        /** 
  18.         * This method is called to notify you that, within s, the count characters 
  19.         *  beginning at start have just replaced old text that had length before 
  20.         *  在s中,从start处开始的count个字符刚刚替换了原来长度为before的文本 
  21.         *  s 为变化后的内容; 
  22.         *  start 为开始变化位置的索引,从0开始计数; 
  23.         *  before 为被取代的老文本的长度,比如s由1变为12,before为0,由12变为1,before为1; 
  24.         *  count 为将要发生变化的字符数 
  25.         */  
  26.         @Override  
  27.         public void onTextChanged(CharSequence s, int start, int before,  
  28.                 int count) {  
  29.             // TODO Auto-generated method stub  
  30.             Log.i("test1""ing:s,"+s+",start,"+start+",before,"+before+",count,"+count);  
  31.               
  32.         }  
  33.        /** 
  34.         * This method is called to notify you that, somewhere within s, the text has been changed. 
  35.         */  
  36.         @Override  
  37.         public void afterTextChanged(Editable s) {  
  38.             // TODO Auto-generated method stub  
  39.             Log.i("test1""after,s,"+s);  
  40.               
  41.         }  
  42. }  


     注册监听:

EditText mEditor = (EditText)findViewById(R.id.editor_input);
mEditor.addTextChangedListener(mTextWatcher);
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值