github-second

Results 1 issues of github-second

android-testing/unit/BasicSample adds a listener like this: `mEmailText.addTextChangedListener(mEmailValidator);` And then on save it checks ``` if (!mEmailValidator.isValid()) { mEmailText.setError("Invalid email");} ``` Why not just have a simple utility class which will...