Back to project page Android-sample.
The source code is released under:
Apache License
If you think the Android project Android-sample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.andreabaccega.formedittextvalidator; /* ww w .ja va2 s.c o m*/ import android.widget.EditText; /** * This is a dummy validator. It just returns true on each input. * @author Andrea Baccega <me@andreabaccega.com> * */ public class DummyValidator extends Validator { public DummyValidator() { super(null); } public boolean isValid(EditText et) { return true; } }