4

コンポーネントが非表示に設定された後に一部のコンポーネントが変更された場合、コンポーネントが表示に設定された後にのみ再描画されます。これにより、ちらつきが発生します (古いグラフィックスが数ミリ秒間表示されます)。

package test;

import javax.swing.*;
import java.awt.*;
import java.util.logging.Level;
import java.util.logging.Logger;

class ReusingWindow extends JWindow {

    JLabel label;

    public ReusingWindow() {

        JPanel panel = new JPanel(new BorderLayout());
        panel.setPreferredSize(new Dimension(300, 200));
        panel.setBackground(Color.WHITE);
        panel.setBorder(BorderFactory.createLineBorder(Color.GRAY));
        label = new JLabel("Lazy cat");
        label.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 10));
        label.setBackground(Color.red);
        label.setOpaque(true);
        panel.add(label, BorderLayout.WEST);
        add(panel);

        pack();
        setLocationRelativeTo(null);
    }

    public static void main(String args[]) {
        ReusingWindow window = new ReusingWindow();

        StringBuilder sb = new StringBuilder();
        sb.append("<html>");
        for (int a = 0; a < 10; a++){
            sb.append("Not very lazy cat. Extremelly fast cat.<br>");
        }
         sb.append("</html>");

        while (true) {

            window.label.setText("Lazy cat");
            window.setVisible(true);
            pause();
            window.setVisible(false);
            pause();

            window.label.setText(sb.toString());
            window.setVisible(true);
            pause();
            window.setVisible(false);
            pause();
        }
    }

    private static void pause() {
        try {
            Thread.sleep(1000);
        } catch (InterruptedException ex) {
            Logger.getLogger(ReusingWindow.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
}

表示する前に毎回新しいウィンドウを作成する以外に解決策はありますか?

4

3 に答える 3

0

問題は、「ウィンドウの再利用」のどこかにある可能性があります。のような単純なクラスで

static class ReusingWindow extends JFrame {
    JLabel label = new JLabel();
    public ReusingWindow() {
        add(label);
        setBounds(0, 0, 100, 100);
    }
}

ちらつきは見られません。

于 2013-09-16T09:28:32.597 に答える