0

有什么办法可以根据输入显示和隐藏一些图像。

我正在使用“T”和“F”的字符数组,如果是“T”那么它将显示图像,如果不是那么它将禁用。

我所做的只是使用JLabel并设置ImageIcon它。它显示和隐藏图像,但使用计时器,它只是刷新整个事物。就像如果有一个“T”值的图像,并且如果定时器的下一个循环有 arr[2] 的“T”值,那么它应该只停留在那里而不是刷新整个事物,即它闪烁。

我的代码如下:

    Timer timer = new Timer();
    TimerTask task = new TimerTask() {
        @Override
        public void run() {
            // TODO Auto-generated method stub
            frame.getContentPane().removeAll();
            call();
        }
    };
    timer.schedule(task, 0, 2000);
}

static void call() {

    String S = "";


    for (int i = 0; i < bool.length; i++) {
        bool[i] = r.nextBoolean();
        if (bool[i]) {
            S = S + "T";
        } else {
            S = S + "F";
        }
    }
    System.out.print(S + "\n");

    char[] chars = S.toCharArray();
    for (int i = 0; i < chars.length; i++) {
        if ('T' == chars[i]) {
            label[i] = new JLabel(img);
            frame.getContentPane().add(label[i]);
        } else {
            label[i] = new JLabel(img1);
            frame.getContentPane().add(label[i]);
        }
        frame.setVisible(true);
    }
}

我想要的只是在特定时间间隔内显示和隐藏图像的 UI,就像在 Android 中一样,我可以setVisibility使用TextView.

4

1 回答 1

2

TimerTask不适用于此任务,因为它不遵守 Swing 的单线程规则(有关更多详细信息,请参阅Swing 中的并发)。

相反,您应该使用javax.swing.Timer,这将确保“tick”事件在事件调度线程中执行。

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.Timer;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Blinky01 {

    public static void main(String[] args) {
        new Blinky01();
    }

    public Blinky01() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        private JLabel label;

        public TestPane() {
            setLayout(new GridBagLayout());
            label = new JLabel("0");
            add(label);
            Timer timer = new Timer(1000, new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    boolean value = (((int) Math.round(Math.random() * 1))) == 0 ? false : true;
                    System.out.println(value);
                    label.setText(value ? "1" : "0");
                }
            });
            timer.setRepeats(true);
            timer.setCoalesce(true);
            timer.setInitialDelay(0);
            timer.start();
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(200, 200);
        }
    }
}
于 2013-03-12T00:43:16.900 回答