1

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 :-/

Greeny
  • 1,931
  • 2
  • 17
  • 26
  • 1
    see [link](http://stackoverflow.com/questions/5218691/how-to-display-input-errors-in-popup) might help – moDev Jan 12 '13 at 20:02

1 Answers1

1

Yes, you can change the colour of the text using this method. Just use the html

UserNameEdt.setError(Html.fromHtml("please enter user name"));

Jashan PJ
  • 4,177
  • 4
  • 27
  • 41
  • I don't want to change the text color, but the background of the error popup. In my case, the red line breaks the color scheme in my app.. – Greeny Oct 10 '13 at 07:10