程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-Android- 在onTextChanged方法內調用setText

android-Android- 在onTextChanged方法內調用setText

編輯:編程綜合問答
Android- 在onTextChanged方法內調用setText

為了防止無限循環我是用了如下的代碼:

 @Override
protected void onTextChanged(CharSequence text, int start,
        int lengthBefore, int lengthAfter) {

    String t = text.toString();
    String tt = t.toUpperCase();

    if (!t.equals(tt)) {

        setText(tt);
    }

    super.onTextChanged(text, start, lengthBefore, lengthAfter);
}

當改變onTextChanged方法中的text時,還有其他的方法來阻止onTextChanged方法被調用嗎?

最佳回答:


int flag_text=0;
protected void onTextChanged(CharSequence text, int start,
    int lengthBefore, int lengthAfter) {

    if (flag_text==0) {
        flag_text=1;
        setText(tt);
    }
    super.onTextChanged(text, start, lengthBefore, lengthAfter);
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved