2

我正在使用 EditText。当我使用 setText() 时。TextWatcher 事件正在调用。我不需要调用它?谁能帮我?

        txt_qty.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {

            }

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

            }

            @Override
            public void afterTextChanged(Editable s) {
            }
        });

谢谢。

4

1 回答 1

7

您可以取消注册观察者,然后重新注册它。

要取消注册观察者,请使用以下代码:

txt_qty.removeTextChangedListener(yourTextWatcher);

要重新注册它,请使用以下代码:

txt_qty.addTextChangedListener(yourTextWatcher);

或者,您可以设置一个标志,以便您的观察者知道您何时自己更改了文本(因此应该忽略它)。

在您的活动中定义一个标志是: boolean isSetInitialText = false;

当你 在调用 set text 之前调用txt_qty.settext(yourText) make时,isSetInitialText = true

然后将您的观察者更新为:

txt_qty.addTextChangedListener(new TextWatcher() {
            @Override 
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
          if (isSetInitialText){
                isSetInitialText = false;
          } else{
                  // perform your operation
          }

            @Override 
            public void onTextChanged(CharSequence s, int start, int before, int count) {
              if (isSetInitialText){
                   isSetInitialText = false;
               } else{
                 // perform your operation
               }
            } 

            @Override 
            public void afterTextChanged(Editable s) {
                 if (isSetInitialText){
                      isSetInitialText = false;
                 } else{
                     // perform your operation
                 }
            } 
        }); 
于 2015-11-20T05:21:45.087 回答