如何从RGB值获取颜色值

时间:2017-04-22 00:08:56

标签: java android

我正在生成随机RGB值

int r = rand.nextInt(255); // [0,255]
int g = rand.nextInt(255); // [0,255]
int b = rand.nextInt(255); // [0,255]

如何将这些整数转换为另一个值(可能是int或hex?)所以我可以像这样设置视图的背景颜色

int color = getColor(r,g,b);
myView.setBackgroundColor(color);

getColor()方法可能是什么样的?

0 个答案:

没有答案