Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to get a color-int from a color resource? I am trying to get the individual red, blue and green components of a color defined in the resource (R.color.myColor) so that I can set the values of three seekbars to a specific level.

On a less important but related note, is there a way to tell whether an int is a color-int or a resource-id at runtime (or just one of these)?

Thanks

share|improve this question

1 Answer

up vote 48 down vote accepted

You can use getResources().getColor(R.color.idname);

Check here,

http://sree.cc/google/android/defining-custom-colors-using-xml-in-android

share|improve this answer
Perfect thanks :] – ataulm Mar 11 '11 at 10:59
what about android.R.color.some_color :-( – Blundell Jun 18 '12 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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