How to change color of JLabel
I want to change the background color of my JLabel. setBackground()
is not working. It is not changing the color. Here is my code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Test1 implements AdjustmentListener {
static JScrollBar sbarR, sbarG, sbarB;
static JLabel lbl;
static JPanel panel2;
static int r, g, b;
static Test1 nb;
public static void main(String[] args) {
nb = new Test1();
JFrame frame = new JFrame("Test");
frame.setLayout(new GridLayout(1,2));
frame.setBounds(100, 100, 200, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel1 = new JPanel();
panel1.setLayout(new GridLayout(1, 3));
panel2 = new JPanel();
lbl = new JLabel();
lbl.setOpaque(true);
sbarR = new JScrollBar(Adjustable.VERTICAL, 0, 1, 0, 255);
sbarG = new JScrollBar(Adjustable.VERTICAL, 0, 1, 0, 255);
sbarB = new JScrollBar(Adjustable.VERTICAL, 0, 1, 0, 255);
sbarR.addAdjustmentListener(nb);
sbarG.addAdjustmentListener(nb);
sbarB.addAdjustmentListener(nb);
panel2.add(lbl);
frame.add(panel1);
frame.add(panel2);
panel1.add(sbarR);
panel1.add(sbarG);
panel1.add(sbarB);
frame.setVisible(true);
}
@Override
public void adjustmentValueChanged(AdjustmentEvent e) {
r = sbarR.getValue();
g = sbarG.getValue();
b = sbarB.getValue();
l开发者_高级运维bl.setBackground(new Color(r, g ,b));
}
}
Please can anyone help me. Thanks.
It doesn't work because your label doesn't have any text, so it's size is [0, 0], and it's thus not visible at all. Construct it with new JLabel("Hello world")
, and it will work as expected.
精彩评论