如何设置JLabel背景颜色?

时间:2010-03-04 15:12:49

标签: java swing jlabel

在我的JPanel中,我将JLabel的背景设置为不同的颜色。我可以看到“测试”这个词,它是蓝色的,但背景根本不会改变。我怎样才能让它显示出来?

this.setBackground(Color.white);
JLabel label = new JLabel("Test");
label.setForeground(Color.blue);
label.setBackground(Color.lightGray);
this.add(label);

4 个答案:

答案 0 :(得分:293)

使用

label.setOpaque(true);

否则背景未绘制,因为opaque的默认falseJLabel

来自JavaDocs

  

如果为true,则组件绘制其边界内的每个像素。否则,组件可能不会绘制其部分或全部像素,从而允许底层像素显示。

有关更多信息,请阅读Java教程How to Use Labels

答案 1 :(得分:38)

默认情况下,JLabel背景是透明的。 将不透明度设置为true,如下所示:

label.setOpaque(true);

答案 2 :(得分:12)

您必须将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()

答案 3 :(得分:5)

对于背景,请确保已将java.awt.Color导入包中。

main方法中,即public static void main(String[] args),调用已导入的方法:

JLabel name_of_your_label=new JLabel("the title of your label");
name_of_your_label.setBackground(Color.the_color_you_wish);
name_of_your_label.setOpaque(true);

注意:设置opaque会影响其可见性。请记住Java中的区分大小写。