inmite / android-validation-komensky

A simple library for validating user input in forms using annotations.
Apache License 2.0
506 stars 78 forks source link

Validation popup appearing without text in samsung s6 android version 5.1.1 #39

Open hafs-r opened 8 years ago

hafs-r commented 8 years ago

I'm using android-validation-komensky to validate my signup form, I found it is working fine in all devices I tested, but in Samsung S6 it does'n show the text inside error popup.

douglasjunior commented 8 years ago

The library uses "setError (String)" to create the error message.

This depends on the version of Android and the component you are using. This message may appear in different ways.

android-edit-text-error 1

telaseterror 1

ldkiq 1

Try manually setting a error message, and see if it works.

Do it:

editText.setError("Testing error message");
hafs-r commented 8 years ago

I resolved it by changing EditText style, Thank you for the quick response.

douglasjunior commented 8 years ago

Ok, welcome.

Please closes #39.