JAVA中的JButton的背景颜色设置问题。用的是MacBook pro,用eclipse写的。
package _12;
import java.awt.Color;
import javax.swing.*;
public class Test extends JFrame {
public static void main(String[] args) {
JFrame frame=new Test();
frame.pack();
frame.setTitle("test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public Test(){
JButton button=new JButton("red");
button.setBackground(Color.RED);
button.setForeground(Color.BLUE);
add(button);
}
} 展开
mac os 默认的border是aqua border(look and feel设置),这个border是一个灰白色填充外加灰色边界的矩形,在初始化button的时候默认是显示border的,所以你会发现这个aqua border layer把你的button覆盖了。此时button上的图层从底向上分别是background>foreground>border layer.所以你看到的灰白色其实是你的默认border。
设置button颜色的解决有两种,你可以设置background颜色,然后设置button foreground透明,border层不显示。
button.setBackground(Color.RED);//设置background颜色
button.setOpaque(true); //foreground设置透明
button.setBorderPainted(false); //最后显示红色
或者设置foreground颜色,这样会把background盖住,然后设置border层不显示。
button.setBackGround(Color.RED); // 随便设,反正会被盖
button.setForeGround(Color.BLUE); //盖住背景色
button.setBorderPainted(false); //最后显示蓝色
另外,你也可以自己设置一个lineBorder代替mac os默认的aqua border。
originBorder=BorderFactory.createLineBorder(Color.LIGHT_GRAY, 1);//这个是windows的默认border
button.setForeGround(Color.BLUE);
button.setBorder(originBorder);//最后会显示一个蓝色,带浅灰边框的button
这个问题在window是不存在的,因为window的默认border是swing border,是无填充透明边界,不会盖住foreground layer和background layer。所以你在windows情况下只要设置好前景色背景色的覆盖关系就行了(比如设置button透明并设置背景色,或者直接设置前景色)。
覆盖关系,覆盖关系,覆盖关系。重说三。
另外mac第三种解决方式:自己网上关键字查找mac java swing look and feel,下载对应的包加入自己的库,然后在swing的window或者panel主函数第一句先:
try{
UIManager.setLookAndFeel(#这里是对应的look and feel包名字#);
}catch(Exception e){e.printStackTrace()}
不过我不推荐这个做法,因为换地方的时候没有库会异常,然后使用默认的lookandfeel。