1

私は小さなJavaアプリケーションに取り組んでおり、アプリケーションのルートペインのガラスペインに待機中のグラフィックを追加したかったのですが、クラスは次のとおりです:

public class WaitPanel extends JPanel {

public WaitPanel() {
    this.setLayout(new BorderLayout());
    JLabel label = new JLabel(new ImageIcon("spin.gif"));
    this.setLayout(new BorderLayout());
    this.add(label, BorderLayout.CENTER);
    this.setOpaque(false);

    this.setLayout(new GridBagLayout());

    this.addMouseListener(new MouseAdapter() {
        public void mousePressed(MouseEvent me) {
            me.consume();
            Toolkit.getDefaultToolkit().beep();
        }
    });
}

public void paintComponent(Graphics g) {
    g.setColor(new Color(0, 0, 0, 140));
    g.fillRect(0, 0, getWidth(), getHeight());
}}

そしてメインクラス:

public class NewJFrame extends JFrame {

public NewJFrame() {
    JButton button =new JButton("Click");
    getContentPane().setLayout(new FlowLayout());
    this.getContentPane().add(button);
    button.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent e) {
            getRootPane().setGlassPane(new WaitPanel());
            getRootPane().getGlassPane().setVisible(true);
        }
    });
}

しかし、ボタンのアクションを次のように変更すると:

getRootPane().setGlassPane(new WaitPanel());
getRootPane().getGlassPane().setVisible(true);
Scanner sc=new Scanner(System.in);
String s=sc.next();
getRootPane().getGlassPane().setVisible(false);

それは動作しません。

4

1 に答える 1