Bạn phải đặt setOpaque (true) thành true khác, nền sẽ không được vẽ theo mẫu. Tôi nghĩ từ việc đọc rằng nếu nó không được đặt thành đúng thì nó sẽ vẽ một số hoặc không bất kỳ pixel nào của nó thành biểu mẫu. Nền mặc định trong suốt có vẻ kỳ lạ đối với tôi ít nhất nhưng theo cách lập trình, bạn phải đặt nó thành đúng như hiển thị bên dưới.
JLabel lb = new JLabel("Test");
lb.setBackground(Color.red);
lb.setOpaque(true); <--This line of code must be set to true or otherwise the
Từ 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()