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 :-/
Asked
Active
Viewed 1,837 times
1
Greeny
- 1,911
- 2
- 17
- 26
-
1see [link](http://stackoverflow.com/questions/5218691/how-to-display-input-errors-in-popup) might help – moDev Jan 12 '13 at 20:02
1 Answers
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
- 3,657
- 3
- 23
- 38
-
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