BackgroundLayerpublic class BackgroundLayer extends CLayer Background layer responsible for window background painting,
should be added as the most bottom layer of a window |
Constructors Summary |
---|
public BackgroundLayer(Image bgImage, int bgColor)
super(bgImage, bgColor);
super.opaque = true;
visible = !transparent;
tileBG = true;
|
Methods Summary |
---|
public void | setBackground(Image bgImage, int bgColor)Set new background image or color for the layer
setBackground(bgImage, tileBG, bgColor);
visible = !transparent;
|
|