I need to do form input validation on a series of EditTexts. I'm using OnFocusChangeListeners to trigger the validation after the user types into each one, but this doesn't behave as desired for the last EditText.

If I click on the "Done" button while typing into the final EditText then the InputMethod is disconnected, but technically focus is never lost on the EditText (and so validation never occurs).

What's the best solution?

Should I be monitoring when the InputMethod unbinds from each EditText rather than when focus changes? If so, how?

link|improve this question
Do you really need to validate the EditText input at the same time the user is typing? Why don't you just validate the EditText's once the user click on the Done button? – Cristian May 4 '10 at 6:05
That's exactly what I want: for the text to be verified when the user clicks the Done button (by Done button I mean the "Done" button on the QWERTY InputManager...NOT the form's submit button). Except that when I hit the Done button, focus stays on the last element in the form, and my validation method is never triggered. Hope my wording is clear... – Stefan May 4 '10 at 21:26
feedback

7 Answers

up vote 41 down vote accepted

Why don't you use TextWatcher ?

Since you have a number of EditText boxes to be validated, I think the following shall suit you :

  1. Your activity implements android.text.TextWatcher interface
  2. You add TextChanged listeners to you EditText boxes
    txt1.addTextChangedListener(this);
    txt2.addTextChangedListener(this);
    txt3.addTextChangedListener(this);
  1. Of the overridden methods, you could use the afterTextChanged(Editable s) method as follows
    @Override
    public void afterTextChanged(Editable s) {
    // validation code goes here
    }

The Editable s doesn't really help to find which EditText box's text is being changed. But you could directly check the contents of the EditText boxes like

    String txt1String = txt1.getText().toString();
    // Validate txt1String

in the same method. I hope I'm clear and if I am, it helps! :)

link|improve this answer
1  
That looks like exactly what I need. Hadn't heard of TextWatcher (new to the SDK/API), but I'll test it out and see if it behaves the way I think it will. Thanks for the info! – Stefan May 18 '10 at 12:30
1  
you're welcome! :) now that you're validating it, could you share how are you going to inform the user of the validation failure? I'm currently looking for best methods for the same. – Nikhil Patil May 19 '10 at 6:57
Nikhil Patil, I just use Toast to let the user know they've done something wrong. Is there some reason why that won't be effective in your case? – Dr.Dredel Nov 18 '10 at 21:24
2  
Of course, Toast is a natural way on android. But when we have considerable amount of elements on screen which need validation, toasts don't seem to be the correct choice.(IMHO,It would annoy the user) I have been experimenting with TextView.setError() (developer.android.com/reference/android/widget/…) – Nikhil Patil Nov 22 '10 at 15:01
1  
Although there is poor support on TextWatcher, it works... kinda! – Tivie Nov 22 '10 at 17:35
feedback

Validation is somewhat tedious. Maybe I can help you in a more generic manner. I have written a basic framework to validate fields in Android.

It is totally free, and you can do whatever you like with it.

Kind regards,

Marc de Kwant

link|improve this answer
feedback

I find InputFilter to be more appropriate to validate text inputs on android.

Here's a simple example: How do I use InputFilter to limit characters in an EditText in Android?

You could add a Toast to feedback the user about your restrictions. Also check the android:inputType tag out.

link|improve this answer
1  
This is a nice solution for things that can be validate as you type (alpha numeric input), but it would not work for things that should only be validate once the user is done entering the input (email address). – Peter Ajtai Dec 13 '11 at 1:08
feedback

I needed to do intra-field validation and not inter-field validation to test that my values were unsigned floating point values in one case and signed floating point values in another. Here's what seems to work for me:

    <EditText
        android:id="@+id/x" 
        android:background="@android:drawable/editbox_background" 
        android:gravity="right" 
        android:inputType="numberSigned|numberDecimal" 
    />

Note, you must not have any spaces inside "numberSigned|numberDecimal". For example: "numberSigned | numberDecimal" won't work. I'm not sure why.

link|improve this answer
feedback

If you want nice validation popups and images when an error occurs you can use the setError method as I describe here: http://blog.donnfelker.com/2011/11/23/android-validation-with-edittext/

link|improve this answer
feedback

I wrote a class that extends EditText which supports natively some validation methods and is actually very flexible.

Current, as I write, natively supported through xml attributes validation methods are:

  1. alpha
  2. alpha numeric
  3. numeric
  4. generic regexp
  5. string emptyness

You can check it out here: https://github.com/vekexasia/android-form-edittext

Hope you enjoy it :)

link|improve this answer
feedback

Please Go through My Blog post on android input validation [updated].

Which has information on,

  • What is regular expression ?
  • How to validate android edittext input ?
  • Online regular expression library
  • Online regular expression testing tool
  • Learn how to write regular expression
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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