Java布局没有显示组件(有时)

时间:2014-10-31 01:00:52

标签: java swing components boxlayout

我正在为我的学生写一个MathQuiz,包括用于渲染的JLatexMath和用于蜂鸣器的jinput。问题是,当我启动程序时,有时(就像每隔四次),没有任何组件可见。它们在调整JFrame大小后出现。 首先,我在jinput或jlatexMath库中考虑了Bugs,但即使使用这个最小的代码,我也会得到相同的错误:

public class Shell extends JFrame{

  private JButton button1;
  private JButton button2;
  private Formula formula;

  public Shell() {
    super("blaBla");
    this.setSize(800, 600);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setVisible(true);
    this.setLayout(new BoxLayout(this.getContentPane(), BoxLayout.Y_AXIS));
    Box b = Box.createHorizontalBox();
    button1 = new JButton(" ");
    button1.setEnabled(false);
    b.add(button1);
    b.add(Box.createHorizontalGlue());
    button2 = new JButton(" ");
    button2.setEnabled(false);
    b.add(button2);
    add(b);
    JPanel formulaPanel = new JPanel();
    add(Box.createVerticalStrut(20));
    add(formulaPanel);
  } 

  public static void main(String[] args) {
    Shell s = new Shell();
  }
}

代码有什么问题?

1 个答案:

答案 0 :(得分:3)

首先将setVisible(true);移动到构造函数的末尾。

而不是在这里......

public Shell() {
    super("blaBla");
    this.setSize(800, 600);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setVisible(true);
    //...
} 

将它移到这里......

public Shell() {
    super("blaBla");
    //...
    add(Box.createVerticalStrut(20));
    add(formulaPanel);
    setVisible(true);
} 

为了防止出现任何其他可能的图形故障,您应该始终从事件调度线程中启动UI,有关详细信息,请参阅Initial Threads