下面的代码片段在 JLabel 中设置文本,该 JLabel 被添加到附加到 JFrame 的 JPanel 中。不管我做什么(例如 repaint()、revalidate() 等),在 Action Listener 完成之前,我都无法让 UI 更新文本。
我以前从来没有遇到过这个问题,这可能是因为我从来不需要在一次触发 Action Listener 时发生几件事。我错过了什么?
TL;DR 为什么在完成触发动作侦听器之前,即使我在每个 listPanel.add() 之后都输入了 repaint(),以下内容也不会更新屏幕上的文本?
final JFrame guiFrame = new JFrame();
final JPanel listPanel = new JPanel();
listPanel.setVisible(true);
final JLabel listLbl = new JLabel("Welcome");
listPanel.add(listLbl);
startStopButton.addActionListener(new ActionListener(){@Override public void actionPerformed(ActionEvent event){
if(startStopButton.getText()=="Start"){
startStopButton.setVisible(false);
listPanel.remove(0);
JLabel listLbl2 = new JLabel("Could not contact”);
listPanel.add(listLbl2);
JLabel listLbl2 = new JLabel("Success”);
listPanel.add(listLbl2);
}
}
guiFrame.setResizable(false);
guiFrame.add(listPanel, BorderLayout.LINE_START);
guiFrame.add(startStopButton, BorderLayout.PAGE_END);
//make sure the JFrame is visible
guiFrame.setVisible(true);
编辑: 我试图实现 SwingWorker,但在操作接口完成触发之前,接口仍然没有更新。这是我的 SwingWorker 代码:
@Override
protected Integer doInBackground() throws Exception{
//Downloads and unzips the first video.
if(cameraBoolean==true)
panel.add(this.downloadRecording(camera, recording));
else
panel.add(new JLabel("Could not contact camera "+camera.getName()));
panel.repaint();
jframe.repaint();
return 1;
}
private JLabel downloadRecording(Camera camera, Recording recording){
//does a bunch of calculations and returns a jLabel, and works correctly
}
protected void done(){
try{
Date currentTime = new Timestamp(Calendar.getInstance().getTime().getTime());
JOptionPane.showMessageDialog(jframe, "Camera "+camera.getName()+" finished downloading at "+currentTime.getTime());
}catch (Exception e){
e.printStackTrace();
}
}
基本上,SwingWorker(正如我实现的那样)没有正确更新 JPanel 和 JFrame。如果我尝试在“done()”中重新绘制,它们也不会更新。我错过了什么?
此外,一旦 JOptionPane 显示自身,就无法将更多面板添加到我的 jframe 中。我也不确定是什么原因造成的。