点击摇摆

时间:2017-08-26 08:30:01

标签: java swing user-interface java-8 awt

我试图让我的JButton在点击时停止其背景更改。我一直在阅读和测试其他questions的答案,例如such,但没有人帮助过我。我是Java的新手,所以具体的细节会有所帮助,这是我的代码和正在发生的事情的演示。另外,如果重要的话,我正在运行ubuntu。

注意:如果我按住鼠标并将鼠标悬停在它上面,它也会触发背景更改。

import javax.swing.*;
import java.awt.*;

public class RaisedButton extends JButton{

    private String      text     =     "";
    private String      type     =     "default";


    public RaisedButton(String text, String type) {
        this.text = text;
        this.type = type;
        __init__();
    }

    private void foundations() {
        NotoFont noto = new NotoFont(true);
        this.setText(this.text.toUpperCase());
        this.setRolloverEnabled(false);
        this.setFocusPainted(false);
        this.setBorderPainted(false);
        this.setFont(noto.get());
        this.setPreferredSize(new Dimension(108 + this.text.length() * 4, 37));
    }

    private void default_type() {
        this.foundations();
        this.setBackground(Color.decode("#FFFFFFF"));
        this.setForeground(Color.decode("#000000"));
    }

    private void primary_type() {
        this.foundations();
        this.setBackground(Color.decode("#00BCD4"));
        this.setForeground(Color.decode("#FFFFFF"));
    }

    private void secondary_type() {
        this.foundations();
        this.setBackground(Color.decode("#FF4081"));
        this.setForeground(Color.decode("#FFFFFF"));
    }

    private void disabled_type() {
        this.foundations();
        this.setBackground(Color.decode("#E5E5E5"));
        this.setForeground(Color.decode("#B2A4A4"));
    }

    private void __init__() {
        switch(this.type.toLowerCase()) {
            case "default":
                default_type();
                break;
            case "primary":
                primary_type();
                break;
            case "secondary":
                secondary_type();
                break;
            case "disabled":
                disabled_type();
                break;
        }
    }
}

证明正在发生的事情......

Demonstration

谢谢!

3 个答案:

答案 0 :(得分:2)

添加使用FixedStateButtonModel setModel(new FixedStateButtonModel());foundations()

答案 1 :(得分:1)

尝试将它放在RaisedButton构造函数中:

    setUI(new BasicButtonUI());

答案 2 :(得分:0)

foundations()方法中,更改

this.setRolloverEnabled(true);

将其设为false:

this.setRolloverEnabled(false);

或删除分配以回退到默认值false

来自JavaDoc的setRolloverEnabled

的详细信息