Вы должны установить для setOpaque (true) значение true, иначе фон не будет окрашен в форму. Я думаю, прочитав это, если он не установлен в true, он закрасит некоторые или не свои пиксели в форме. Фон по умолчанию прозрачен, что, по крайней мере, мне кажется странным, но при программировании вы должны установить значение true, как показано ниже.
JLabel lb = new JLabel("Test");
lb.setBackground(Color.red);
lb.setOpaque(true); <--This line of code must be set to true or otherwise the
Из JavaDocs
setOpaque
public void setOpaque(boolean isOpaque)
If true the component paints every pixel within its bounds. Otherwise,
the component may not paint some or all of its pixels, allowing the underlying
pixels to show through.
The default value of this property is false for JComponent. However,
the default value for this property on most standard JComponent subclasses
(such as JButton and JTree) is look-and-feel dependent.
Parameters:
isOpaque - true if this component should be opaque
See Also:
isOpaque()