android-saripaar
android-saripaar copied to clipboard
UI form validation library for Android
We need add Max,Min,DecimalMin,DecimalMax validator that will check if value is greater or less than without equality. Without this, I can't check if value is greater than zero, because Min...
Self-descriptive. See http://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/
Self-descriptive.
Adding multiple validated fields across multi-lang application requires many repetitions of ``` java @NotEmpty(messageResId = R.string.error_empty) private EditText firstnameView; @NotEmpty(messageResId = R.string.error_empty) private EditText lastnameView; @NotEmpty(messageResId = R.string.error_empty) private EditText...
similar way to context.getString(int resId, Object... formatArgs)