In my form I use setError("") on an EditText field. My Application-Theme extends android:Theme.Holo.
I have manually set an image with a dark background for android:errorMessageBackground and android:errorMessageBackgroundAbove.

And now here's the problem: The text color of the error message is also very dark and not readable.

I tried changing different textColor attributes in my Theme, but I wasn't able to find the correct one.

May anyone could help me, please? Thank you! Chris

link|improve this question
Ok I found out a solution. I actually couldn't find the specific theme attribute, wich needs to be extended. But one can set <item name="android:textColorPrimaryInverse">#ffffffff</item> to the color nedded. That did the trick for me. This is not colliding with other colors in my application, because I set the text colors for every kind of element in its own style set. Hope this helps. – Chris Jul 19 '11 at 12:31
Add that as an answer to your own question. – Macarse Feb 15 at 16:12
feedback

1 Answer

do following in manifest.xml

<resources>
    <style name="LightErrorFix" parent="@android:style/Theme.Light">
         <item name="android:textColorSecondaryInverse">@android:color/secondary_text_light</item>
    </style>
</resources>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.