setBlue
Sets the background color's blue component.
@Deprecated public void setBlue(int blue) { int red = getRed(); int green = getGreen(); this.backgroundColor = (red << 16) | (green << 8) | (blue << 0); }
Details
- Deprecated:
- This method is deprecated.
Parameters
- blue
- Background color's blue component.