Reputation: 1951
Is it possible to change the style of the "error popup" which can by shown with the EditText.setError(String)
method? Or is this an unstylable popup :-/
Upvotes: 1
Views: 1856
Reputation: 4398
Yes, you can change the colour of the text using this method. Just use the html
UserNameEdt.setError(Html.fromHtml("please enter user name"));
Upvotes: 1