How do you change the color contrast of text when the background changes? for example If I was to have a black background, black text would not be visible.

link|improve this question

Are you using your own theme? How is the background set? – EboMike Apr 22 '11 at 22:34
feedback

1 Answer

up vote 0 down vote accepted

This might be helpful: http://developer.android.com/guide/topics/resources/color-list-resource.html

It is a way you can set a color that will change based on certain circumstances.

For example, say you have a TextView that you want to have white text while it is enabled and black text when it is disabled. You can set that up in a xml file using the references in the link above, and then in your xml layout where you define the TextView set the android:textColor to @color/my_text_color. (my_text_color being the xml color list file you created)

Then, as the TextView changes from enabled to disabled (or whatever you end up setting up in the xml file) the color will change automatically as well.

That's one way to do it. However, you might want to try to clarify what you are looking for as it isn't perfectly clear in your question.

Update

After Matt's comment, here is a method you could use to get an inverted color value. There is probably a better way but this should work.

private int getInverseColor(int color){
    int red = Color.red(color);
    int green = Color.green(color);
    int blue = Color.blue(color);
    int alpha = Color.alpha(color);
    return Color.argb(alpha, 255-red, 255-green, 255-blue);
}

You could programmaticly get the color int from a view such as a TextView using one of the getTextColor() methods. You may have to tinker with a Color State List like I linked to above to get the color you want. Then pass that color to the method above to get the inverted color int and set it with one of the setTextColor() methods.

link|improve this answer
I think he is talking about inverting the color of the background for the text. For example, if the background was white, the text color would be black. If the BG was black, the text would be white. Blue BG, yellow text, etc. If that's the case, I'd like to know if it is possible, too :) – Matt Apr 23 '11 at 0:30
@Matt: Correct sir thank you. – AedonEtLIRA Apr 25 '11 at 14:58
feedback

Your Answer

 
or
required, but never shown

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