文档中心/本页总览Method setBackgroundColor [2/2]setBackgroundColor [2/2]设置背景色 RGB。Javapublic void setBackgroundColor(int red, int green, int blue) { this.backgroundColor = (red << 16) | (green << 8) | (blue << 0); }参数red 红。green 绿。blue 蓝。