无法看到Java GUI按钮的标签

时间:2013-02-24 05:46:59

标签: java swing user-interface layout-manager null-layout-manager

我是二年级学生,我正在研究我的OOP项目(计算器)。我已经完成了数字按钮和运算符的功能。现在我正处于重新安排按钮的阶段。首先,我只是将按钮大小设置为(50,50),它工作正常,其标签仍然可见,但当我决定将其缩小(30,30)时,其标签变为“...”而不是

这是图片:

GUI btn shows ... instead of MC, MR, MS, and M+

继承我的代码:

  lblEdit.setBounds(-138,-5,180,50);    
  lblView.setBounds(-90,-5,180,50); 
  lblHelp.setBounds(-40,-5,180,50); 
  txt.setBounds(15,35,250,30);      // text pane
  txt2.setBounds(0,330,100,20); 
  blank.setBounds(15,80,30,30);     // this is just an extra button, no use at all, OK? :D 
  btnMC.setBounds(15,115,30,30);
  btnMR.setBounds(15,150,30,30);
  btnMS.setBounds(15,185,30,30);
  btnMp.setBounds(15,220,30,30);

1 个答案:

答案 0 :(得分:6)

您的问题是您将按钮大小设置为开头。如果您使用适当的布局管理器并在JFrame上调用pack()来保持JButtons和GUI的大小,您将获得一个体面的GUI,显示任何操作系统中的所有文本。解决方案:不要使用null布局,不要调用setBounds(...),阅读并使用嵌套JPanel中保存的相应布局管理器,并让这些布局管理器为您完成所有繁重的布局。

例如,您可以使用GridLayout创建按钮网格,只需更改按钮的字体大小即可更改网格和按钮的大小。例如,运行下面的代码两次,更改按钮字体大小(在下面的代码中,浮点常量BTN_FONT_SIZE),并通过将按钮的大小调整为最佳大小来查看GUI如何自动调整按钮字体。

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

public class CalcEg {
   private static final float BTN_FONT_SIZE = 20f;  // **** try using 40f here ****
   private static final String[][] BTN_LABELS = {
      {"7", "8", "9", "-"},
      {"4", "5", "6", "+"},      
      {"1", "2", "3", "/"},
      {"0", ".", " ", "="}
   };
   private JPanel mainPanel = new JPanel();

   public CalcEg() {
      int rows = BTN_LABELS.length;
      int cols = BTN_LABELS[0].length;
      int gap = 4;
      mainPanel.setBorder(BorderFactory.createEmptyBorder(gap, gap, gap, gap));
      mainPanel.setLayout(new GridLayout(rows, cols, gap, gap));
      for (String[] btnLabelRow : BTN_LABELS) {
         for (String btnLabel : btnLabelRow) {
            JButton btn = createButton(btnLabel);
            // add ActionListener to btn here
            mainPanel.add(btn);
         }
      }
   }

   private JButton createButton(String btnLabel) {
      JButton button = new JButton(btnLabel);
      button.setFont(button.getFont().deriveFont(BTN_FONT_SIZE));
      return button;
   }

   public JComponent getMainComponent() {
      return mainPanel;
   }

   private static void createAndShowGui() {
      CalcEg mainPanel = new CalcEg();

      JFrame frame = new JFrame("CalcEg");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.getContentPane().add(mainPanel.getMainComponent());
      frame.pack();
      frame.setLocationByPlatform(true);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}

如果使用JPanel将按钮JPanel嵌套到BorderLayout中并将JTextField添加到其PAGE_START或NORTH端,并且您使用不同的字体大小,则会看到如下内容:

enter image description here