我正在生成随机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()
方法可能是什么样的?