Form validation library for Android?

后端 未结 7 2121
自闭症患者
自闭症患者 2020-12-09 09:48

Is there any mature form validation API / library for Android? I\'ve found http://code.google.com/p/android-binding/ but it seems that is under heavy development.

相关标签:
7条回答
  • 2020-12-09 10:53

    Using either

    android.widget.AutoCompleteTextView.Validator;
    myTextview.setValidator(myCustomValidator);
    

    or myTextView.setError(error-message) in an onTextChangedListener works fine and the second one looks really great.

    0 讨论(0)
提交回复
热议问题