JAVA中的JButton的背景颜色设置问题。用的是MacBook pro,用eclipse写的。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA中的JButton的背景颜色设置问题。用的是MacBook pro,用eclipse写的。相关的知识,希望对你有一定的参考价值。
我把JButton的背景色设置成红色,但是为什么运行出来之后背景色是白色呢?麻烦大家帮我看下怎么回事,感谢!
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。
参考技术A设置一下button的透明
button.setOpaque(true);追问也不对啊,边界是变红色了,但是按钮还是白色的。
按道理JButton直接设置背景色就可以了
我不是mac没法测试
JButton、JTextFeild、JLabel 设置背景颜色不起作用
【中文标题】JButton、JTextFeild、JLabel 设置背景颜色不起作用【英文标题】:JButton, JTextFeild, JLabel set background color not working 【发布时间】:2019-07-07 04:41:17 【问题描述】:这是我的 JButton 代码。我在为此登录按钮设置背景颜色时遇到问题
JButton btnlogin = new JButton("Log in");
btnlogin.setFont(new Font("Lucida Grande", Font.BOLD, 14));
btnlogin.setAlignmentX(Component.CENTER_ALIGNMENT);
btnlogin.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
EmailValidator emailValidator = new EmailValidator();
if(!emailValidator.validate(txtEmail.getText().trim()))
System.out.print("Invalid Email ID");
validationtext.setText("Invalid Email");
);
btnlogin.setBounds(210, 432, 200, 48);
btnlogin.setBackground(new Color(66, 185, 217));
frame.getContentPane().add(btnlogin);
我已经尝试将 opaque 值设置为 true,但仍然无法正常工作。
【问题讨论】:
对于JTextField
和JLabel
,您只需将 opaque 设置为 true。
问题已解决。谢谢@SWETAKESUR
【参考方案1】:
您只需要在设置背景颜色之前添加两行即可获得预期的结果:
-
通过编写以下代码将不透明值设置为真:
btnlogin.setOpaque(true);
默认情况下,JFrame 中设置了边框,您必须根据自己的意愿进行更改。这里我使用的是 MatteBorder 的例子:btnlogin.setBorder(new MatteBorder(1, 1, 1, 1, (Color) new Color(0, 0, 0)));
然后你会得到你预期的结果。
【讨论】:
【参考方案2】:这段代码实际上改变了按钮的颜色:
btnlogin.setOpaque(true);
btnlogin.setBorder(null);
btnlogin.setBackground(Color.red); // Any color you wish
【讨论】:
以上是关于JAVA中的JButton的背景颜色设置问题。用的是MacBook pro,用eclipse写的。的主要内容,如果未能解决你的问题,请参考以下文章
JButton、JTextFeild、JLabel 设置背景颜色不起作用
如何将所有 JButton 的默认鼠标按下背景颜色覆盖为其当前背景颜色的较暗阴影?