I am trying to use this neat validation framework but I hit the wall with this issue:
While doing the validation on a button click,I can see the fields being flagged but instead of aborting the execution, the flow continues. Is there a way to just stop the execution on a validation error?
calculateButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
validator.validate(); // if validate fails, flow should not continue
}
}
It would have been easier to make the validate method boolean so you can make your own decision right?
There are two validation modes
BURST
andIMMEDIATE
. UseMode.IMMEDIATE
to stop validation when there's a failure. You can set the mode usingvalidator.setValidationMode(Mode.IMMEDIATE)
to achieve the desired result.