user1601401
user1601401

Reputation: 732

Android 6 EditText.setError not working correctly

I have upgraded to android 6 and seeing some strange things when trying to set validation for some editTexts. I am using android-saripaar for validation:

@Email(messageResId = R.string.error_email)
private EditText email;
@Password(min = 6, scheme = Password.Scheme.ALPHA_NUMERIC_MIXED_CASE_SYMBOLS)
private EditText password;
@ConfirmPassword
private EditText repassword;
@NotEmpty(messageResId = R.string.error_name)
private EditText firstname;
@NotEmpty(messageResId = R.string.error_name)
private EditText lastname;
private Validator mValidator;

For some reason the email, password, confirm password are not showing the error message on the popup, while the last and first name are fine

enter image description here

I have tried without the library and the same issue occurred. Using editText.setError("Some Message") This did not happen prior to android 6 and was working fine on 5.

Anybody experienced similar to this? if so how did you fix it?

Upvotes: 12

Views: 1851

Answers (3)

Mounir Elfassi
Mounir Elfassi

Reputation: 2252

i think this is related to activity theme, this what i'm using and working in android 6.0:

activity theme :

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

code : please note i'm extending activity not AppCompatActivity

myeditText.setError("Please enter valid email");
myeditText.setFocusable(true);

Upvotes: 1

Aown Raza
Aown Raza

Reputation: 2023

TRY @NotEmpty annotation on Email edittext field

@NotEmpty
@Email
private EditText email;

Upvotes: 1

Ruyonga Dan
Ruyonga Dan

Reputation: 686

use getString(R.string.error_name)

Upvotes: 2

Related Questions