I'am using an Android Color Picker in my application which returns an android integer constant(-ve value). How can obtain r,g,b,a float values from the integer constant, so that I can pass r,g,b,a float values to opengl to update color.

Thanks

link|improve this question

1  
You can get R, G, B and A integers using e.g. int blue = Color.blue(RGBA_int). It'll be an integer between [0, 255] so divide it by 255f and you'll get a float [0f, 1f]. – harism Feb 21 at 0:10
Thanks..new to Android!..worked perfectly:) – MRSGT _GT Feb 21 at 1:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.