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 3 EditText box in my activity, how to achieve changed text using single Textwatcher.

share|improve this question
-1 for failing to phrase your question in such a way that the responses you got were actually what you wanted. – ArtOfWarfare Dec 3 '12 at 19:47

2 Answers

I just encountered this problem. I solved it by creating an inner class implementation of TextWatcher that takes a View as an argument. Then, in the method implementation, just switch on the view to see which one the Editable is coming from:

//Declaration
private class GenericTextWatcher implements TextWatcher{

    private View view;
    private GenericTextWatcher(View view) {
        this.view = view;
    }

    public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
    public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}

    public void afterTextChanged(Editable editable) {
        String text = editable.toString();
        switch(view.getId()){
            case R.id.name:
                model.setName(text);
                break;
            case R.id.email:
                model.setEmail(text);
                break;
            case R.id.phone:
                model.setPhone(text);
                break;
        }
    }
}

// Usage:

name = (EditText) findViewById(R.id.name);
name.setText(model.getName());
name.addTextChangedListener(new GenericTextWatcher(name));

email = (EditText) findViewById(R.id.email);
email.setText(model.getEmail());
email.addTextChangedListener(new GenericTextWatcher(email));

phone = (EditText) findViewById(R.id.phone);
phone.setText(model.getPhone());
phone.addTextChangedListener(new GenericTextWatcher(phone));

share|improve this answer
Can you please tell what is 'model' in above code and where to declare it? – YuDroid Jun 25 '12 at 6:56
model is my own class that I am using to store the data entered by the user. It is just an example variable. Instead of model.setEmail(), you would use "text" in whatever way you see fit. – Sky Kelsey Jun 25 '12 at 22:29
Yes, I made it work for my application. But the problem is, my activity contains edittexts, which are all of kind to take input as a phone number and I need to set same kind of textwatcher for all. So its leading me to code redundancy. Do you hv any suggestion if I want to apply same kind of behaviour to multiple edittexts in which I have implemented OnTextChanged method for all of them?? – YuDroid Jun 26 '12 at 6:19
That's exactly what my example is doing :) You create one TextWatcher class, which saves a reference to an EditText. Then, for each EditText, you construct a new instance of that TextWatcher, and pass in a reference to the current EditText. – Sky Kelsey Jun 26 '12 at 22:42
1  
this answer is not Single TextWatcher for multiple EditTexts. It is 3 instances of one TextWatcher class. So 3 separate TextWatchers are controlling 3 EditTexts. – breceivemail Dec 8 '12 at 11:58
show 1 more comment
TextWatcher watcher = new TextWatcher(){

    @Override
    public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
    }

    @Override
    public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
    }

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

Then:

editText1.addTextChangedListener(watcher);
editText2.addTextChangedListener(watcher);
editText3.addTextChangedListener(watcher);
share|improve this answer
2  
Thanks.But how to get the edited text for each TextBox; – bie Apr 18 '11 at 12:32
1  
That's not what you asked XD Have you ever used TextWatcher? AFAIK you won't know what exactly watcher is being used. What exactly do you want? – Cristian Apr 18 '11 at 12:52
(Whining post warning) He probably has very similar validation code for all controls and doesn't want to copy and paste it 3 times :) I've hit it before, why can they send the control that generated the click on onClickListener and not on things like TextWatcher... The only workaround i can think of is make 3 TextWatchers that call the same procedure but with a pointer to their respective edit controls. – Torp Apr 18 '11 at 13:24
1  
@Torp, @bie: This answer might be of interest: stackoverflow.com/questions/4283062/… Not sure it exactly solves the problem stated here, but, as shown, you could have the CustomTextWatcher automatically call another function which takes in the passed Editable. – kcoppock Apr 18 '11 at 16:00
+1 for answering the question bie asked. – ArtOfWarfare Dec 3 '12 at 19:46

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.