如何根据JButton的大小自动增加或减少JButton文本的大小?

时间:2012-12-05 14:14:17

标签: java swing jpanel jbutton grid-layout

我试图自动增加/减少JButton文本的字体大小(如果JButton增加/拉伸它的文本也会增加,如果JButton减少它的文本也会减少)。 JButtons的默认字体是Sans-Serif大小为20,它永远不会减少到20以下(它可以是21,30,40或任何高于或等于20但不低于20的任何东西)。我有一个名为MenuJPanel的JPanel,它使用GridLayout添加5个JButton,随着JPanel的增加/减少,它将增加/减少。我选择了GridLayout,因为它似乎是为此目的的最佳布局,我错了吗?我还在MenuJPanel中添加了一个componentResized。下面你可以看到我的代码部分有效。

enter image description here

public class MenuJPanel extends JPanel {

    private JButton resizeBtn1;
    private JButton resizeBtn2;
    private JButton resizeBtn3;
    private JButton resizeBtn4;
    private JButton resizeBtn5;

    public MenuJPanel() {
        initComponents();
      this.addComponentListener(new ComponentAdapter() {
            @Override
            public void componentResized(ComponentEvent e) {

                Font btnFont = resizeBtn1.getFont();
                String btnText = resizeBtn1.getText();

                int stringWidth = resizeBtn1.getFontMetrics(btnFont).stringWidth(btnText);
                int componentWidth = resizeBtn1.getWidth();

                // Find out how much the font can grow in width.
                double widthRatio = (double) componentWidth / (double) stringWidth;

                int newFontSize = (int) (btnFont.getSize() * widthRatio);
                int componentHeight = resizeBtn1.getHeight();

                // Pick a new font size so it will not be larger than the height of label.
                int fontSizeToUse = Math.min(newFontSize, componentHeight);

                // Set the label's font size to the newly determined size.
                resizeBtn1.setFont(new Font(btnFont.getName(), Font.BOLD, fontSizeToUse));
            }
        });
    }

    private void initComponents() {

        resizeBtn1 = new javax.swing.JButton();
        resizeBtn2 = new javax.swing.JButton();
        resizeBtn3 = new javax.swing.JButton();
        resizeBtn4 = new javax.swing.JButton();
        resizeBtn5 = new javax.swing.JButton();

        setLayout(new java.awt.GridLayout(5, 0));

        resizeBtn1.setText("Text to resize 1");
        add(resizeBtn1);

        resizeBtn2.setText("Text to resize 2");
        add(resizeBtn2);

        resizeBtn3.setText("Text to resize 3");
        add(resizeBtn3);

        resizeBtn4.setText("Text to resize 4");
        add(resizeBtn4);

        resizeBtn5.setText("Text to resize 5");
        add(resizeBtn5);
    }
}

1 个答案:

答案 0 :(得分:5)

通常,ButtonUI JButton代表根据设计师选择的字体和平台的美学来计算按钮的首选大小。由于您的方法失败了,您可以决定文本如何使用按钮缩放并容纳按钮装饰。

如果没有创建自己的ButtonUI,您只需缩放文字即可。在此example中,TextLayout用于以BufferedImage呈现任意大小的文本,可根据需要缩小。在此example中,单个数字的字形在BufferedImage中呈现并缩放以适合按钮的当前大小。如果您需要处理Icon的相对定位,请参阅SwingUtilities.layoutCompoundLabel(),检查here