• android API之android.text.TextWatcher


    When an object of a type is attached to an Editable, its methods will be called when the text is changed.

    接口TextWatcher定义了三个抽象方法:

    public void beforeTextChanged(CharSequence s, int start, int count, int after)

    This method is called to notify you that, within s, the count characters beginning at start are about to be replaced by new text with length after. It is an error to attempt to make changes to s from this callback.

    public void onTextChanged(CharSequence s, int start, int before, int count)

    This method is called to notify you that, within s, the count characters beginning at start have just replaced old text that had length before. It is an error to attempt to make changes to s from this callback.

    public void afterTextChanged(Editable s)

    This method is called to notify you that, somewhere within s, the text has been changed. It is legitimate(合理) to make further changes to s from this callback, but be careful not to get yourself into an infinite loop, because any changes you make will cause this method to be called again recursively(递归). (You are not told where the change took place because other afterTextChanged() methods may already have made other changes and invalidated the offsets. But if you need to know here, you can use Spannable.setSpan in onTextChanged to mark your place and then look up from here where the span ended up.

  • 相关阅读:
    汉诺塔实现笔记
    python-nmap的函数学习
    字符串匹配的KMP算法(转)
    QT下的贪吃蛇
    PentestBox在win10里打不开工具
    Dalvik虚拟机执行流程图
    用dx生成dex时遇到class name does not match path
    python3 小工具
    python3的Cryptodome
    前端学习笔记 day02 CSS
  • 原文地址:https://www.cnblogs.com/fengzhblog/p/3182228.html
Copyright © 2020-2023  润新知