延迟可能不是一个准确的术语,但是当我将图像添加到按钮时,整个框架都不会显示,至少在一开始不会显示。重新调整窗口大小将按预期显示所有按钮。

没有图像就不会发生此问题,因此我猜测正在发生一些中间检索->加载步骤,直到发生这种情况,我才遇到此“错误”。所以我的问题是,假设这是正确的,我该怎么做才能规避/纠正所有问题都可以按预期立即显示?

这是代码:

/* Author: Luigi Vincent Exercise: 12.1 -
* Create a frame and set its layout to FlowLayout
* Create two panels and add them to the frame.
* Each panel contains three buttons. The panel uses FlowLayout
*/

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

public class Ex_1 {
    public static void main(String[] args) {
        Ex1_Layout frame = new Ex1_Layout();
        frame.setTitle("Exercise 12.1");
        frame.setSize(450, 250);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);

        ImageIcon valk = new ImageIcon("C:/MyWork/Images/valk.gif");

        JButton alpha = new JButton("Disgaea");
        JButton beta = new JButton("Riviera: The Promised Land");
        JButton gamma = new JButton("Yggdra Union");
        JButton delta = new JButton("Dissidia");
        JButton epsilon = new JButton("Valkyrie Profile", valk);
        JButton zeta = new JButton("Ragnarok Online");

        JPanel p1 = new JPanel();
        JPanel p2 = new JPanel();

        p1.add(alpha);
        p1.add(beta);
        p1.add(gamma);
        p2.add(delta);
        p2.add(epsilon);
        p2.add(zeta);

        frame.add(p1);
        frame.add(p2);

    } // End of Main
} // End of Ex_1

class Ex1_Layout extends JFrame {
    public Ex1_Layout(){
        setLayout(new FlowLayout(FlowLayout.LEFT, 0, 0)); // Set FlowLayout, aligned left, horizontal and vertical gap of 0
    }
} // End of Ex1_Layout

最佳答案

当我将图像添加到按钮时,整个框架不会显示,至少在一开始不会显示。


frame.setVisible(true);中添加所有组件后,在添加中调用JFrame



一些要点:


使用SwingUtilities.invokeLater()确保EDT已正确初始化。

阅读更多


Why to use SwingUtilities.invokeLater in main method?
SwingUtilities.invokeLater

除非修改现有逻辑,否则不要扩展任何类。

阅读更多


Composition over inheritance

关于java - 带有imageicon“滞后”的JButton,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24144188/

10-10 22:11