data-binding-validator icon indicating copy to clipboard operation
data-binding-validator copied to clipboard

Android fields validation library based on data binding adapters.

Results 16 data-binding-validator issues
Sort by recently updated
recently updated
newest added

Spaces only in a field pass validateEmpty rule so there should also be a new validateBlank rule that can be applied on a field if spaces only are not allowed....

How can I validate a Spinner? I tried adding one of the validations but I get this compilation error: `Cannot find a setter for that accepts parameter type 'int' If...

I'm running into an UI issue, causing the error message under a TextInputLayout to flicker if multiple rules are used. Please see the gif below. ![datatbinding_validation_ui_issue](https://user-images.githubusercontent.com/6894360/73510540-a37d9980-439f-11ea-9fd9-7a55fa419a1d.gif) What is happening is,...

The phone number validator is based on `Patterns.PHONE`. Also there were updated build tools and third-party libs to last versions.

Email validation is ignored when app is launched with release variant. Odd that the same code built with debug variant works perfectly, as well as the other validations (telephone and...

help wanted

I'm getting this error while upgrade to verison 2.0.0 `Caused by: org.gradle.tooling.BuildException: Failed to process resources, see aapt output above for details. ` but when I downgrade to version 1.0.0...

This is what I'm doing ![image](https://user-images.githubusercontent.com/2152278/62502020-529b3880-b7a2-11e9-8887-c99d41059f50.png) It doesn't work after the value changed.

If we implement a ValidationListener, it would be nice to get the error message in the onValidationError. Otherwise, how do we know which rule failed? NOTE: This is due to...

question