如何从黑莓上的int值获取颜色

时间:2011-10-05 12:44:35

标签: blackberry

我有从Web服务返回的int值(红色,绿色,蓝色)。

topR = 0.14
topG = 0.14
topB = 0.14


bottomR =0.62
bottomG =0.62
bottomB =0.62

从这个值来看如何在黑莓上获得颜色。

请帮助我。

1 个答案:

答案 0 :(得分:0)

也许这就是你要找的东西

private int color =  0x00000000;  

public void setColor(int r, int g, int b)
{
     color = (255<<24) | (r<<16) | (g<<8) | b;
}