Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a EditView called "text". I have implemented textWatcher

   text.addTextChangedListener(this);

Whenever i try to set EditView to some value in the TextWatcher,it is throwing Force close.

Here's the code:

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

  }
 public void onTextChanged(CharSequence s, int start, int before, int end)
  {
//text.setText("");
    }
   public void afterTextChanged(Editable s)
{       
     //text.setText("");
}

My requirement is : Whenever the user type some value,the EditView has to set back to Null. Please help me out.

share|improve this question
Well what's wrong with those comments over there? You may want to implement a focusLost listener. – GGeorge Jan 11 at 12:09
2  
show your logcat.and put all your code if possible – Neurenor Jan 11 at 12:11
is it a TextView or an EditText View? Where will the user enter values? – Santhosh Jan 11 at 12:12
i think your are using EditText instead of Textview.. – Mehul Ranpara Jan 11 at 12:19
Yes it is EditText – TheAndroDev Jan 11 at 12:26

1 Answer

up vote 1 down vote accepted

You can do it this way:

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

public void onTextChanged(CharSequence s, int start, int before, int end) {
}

public void afterTextChanged(Editable s){       
    s.clear();
}
share|improve this answer
Perfect Answer..+1 – Mehul Ranpara Jan 11 at 12:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.