ValidatedTextInputLayout
ValidatedTextInputLayout copied to clipboard
An extension to Android Design Support library's TextInputLayout with integrated validation support
Hi, I'm trying to use your library to validate mi editText. I followed the guide that is written on the readme, but I need the `validation` namespace. How I need...
``` private fun initialize() { if (!isInEditMode) { validators = ArrayList() this.post { if (!editText!!.isInEditMode) initializeTextWatcher() } } } ``` Why do we need to check if editText is not...